mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-11 23:26:30 +08:00
23 lines
580 B
TypeScript
23 lines
580 B
TypeScript
import { styled } from '@toeverything/components/ui';
|
|
import { Footer } from './footer';
|
|
import { SettingsList } from './SettingsList';
|
|
|
|
export const SettingsPanel = () => {
|
|
return (
|
|
<StyledContainerForSettingsPanel>
|
|
<SettingsList />
|
|
<Footer />
|
|
</StyledContainerForSettingsPanel>
|
|
);
|
|
};
|
|
|
|
const StyledContainerForSettingsPanel = styled('div')(({ theme }) => {
|
|
return {
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
justifyContent: 'space-between',
|
|
paddingBottom: 44,
|
|
height: '100%',
|
|
};
|
|
});
|