mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-27 10:52:40 +08:00
25 lines
661 B
TypeScript
25 lines
661 B
TypeScript
import { Skeleton } from '../../ui/skeleton';
|
|
import { SettingHeader } from './setting-header';
|
|
import { SettingRow } from './setting-row';
|
|
import { SettingWrapper } from './wrapper';
|
|
|
|
export const WorkspaceDetailSkeleton = () => {
|
|
return (
|
|
<>
|
|
<SettingHeader title={<Skeleton />} subtitle={<Skeleton />} />
|
|
|
|
{new Array(3).fill(0).map((_, index) => {
|
|
return (
|
|
<SettingWrapper title={<Skeleton />} key={index}>
|
|
<SettingRow
|
|
name={<Skeleton />}
|
|
desc={<Skeleton />}
|
|
spreadCol={false}
|
|
></SettingRow>
|
|
</SettingWrapper>
|
|
);
|
|
})}
|
|
</>
|
|
);
|
|
};
|