mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-23 21:06:22 +08:00
init: the first public commit for AFFiNE
This commit is contained in:
@@ -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';
|
||||
Reference in New Issue
Block a user