diff --git a/front/src/components/table/ClickableCell.tsx b/front/src/components/table/ClickableCell.tsx index a1ecb43af..fdae76a33 100644 --- a/front/src/components/table/ClickableCell.tsx +++ b/front/src/components/table/ClickableCell.tsx @@ -1,3 +1,4 @@ +import styled from '@emotion/styled'; import * as React from 'react'; import { Link } from 'react-router-dom'; @@ -6,8 +7,16 @@ type OwnProps = { children?: React.ReactNode; }; +const Container = styled.span` + margin-left: 4px; +`; + function ClickableCell({ href, children }: OwnProps) { - return {children}; + return ( + + {children} + + ); } export default ClickableCell;