mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-22 11:43:34 +03:00
Fix linter and yarn.lock not being synced
This commit is contained in:
parent
187b6f9335
commit
41211dc1a6
@ -2,14 +2,14 @@ import { styled } from '@linaria/react';
|
||||
import { useContext } from 'react';
|
||||
import { ThemeContext } from 'twenty-ui';
|
||||
|
||||
const StyledTh = styled.th<{ backgroundColor: string;}>`
|
||||
const StyledTh = styled.th<{ backgroundColor: string }>`
|
||||
background: ${({ backgroundColor }) => backgroundColor};
|
||||
border-bottom: none;
|
||||
border-top: none;
|
||||
background: ${({ backgroundColor }) => backgroundColor};
|
||||
`;
|
||||
|
||||
export const RecordTableHeaderDragDropColumn = () => {
|
||||
const { theme } = useContext(ThemeContext);
|
||||
|
||||
const { theme } = useContext(ThemeContext);
|
||||
|
||||
return <StyledTh backgroundColor={theme.background.primary}></StyledTh>;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user