init: the first public commit for AFFiNE

This commit is contained in:
DarkSky
2022-07-22 15:49:21 +08:00
commit e3e3741393
1451 changed files with 108124 additions and 0 deletions
@@ -0,0 +1,18 @@
import { styled } from '@toeverything/components/ui';
export const LayoutSettings = () => {
return (
<StyledText>
<p>Layout Settings Coming Soon...</p>
</StyledText>
);
};
const StyledText = styled('div')(({ theme }) => {
return {
display: 'flex',
justifyContent: 'center',
color: theme.affine.palette.menu,
marginTop: theme.affine.spacing.lgSpacing,
};
});
@@ -0,0 +1 @@
export { LayoutSettings } from './LayoutSettings';