refactor: remove all legacy files

+ comment/delete things that haven't yet migrated to mantine
This commit is contained in:
Sonny
2024-11-07 00:29:58 +01:00
committed by Sonny
parent 861906d29b
commit 5c37fe9c31
148 changed files with 469 additions and 4728 deletions

View File

@@ -1,24 +0,0 @@
import { ReactNode } from 'react';
import CollectionHeader from '~/components/dashboard/collection/header/collection_header';
import LinkList from '~/components/dashboard/link/link_list';
import ContentLayout from '~/components/layouts/content_layout';
import { ActiveCollectionContext } from '~/contexts/active_collection_context';
import { CollectionWithLinks } from '~/types/app';
const SharedCollectionPage = ({
collection,
}: {
collection: CollectionWithLinks;
}) => (
<ActiveCollectionContext.Provider
value={{ activeCollection: collection, setActiveCollection: () => {} }}
>
<CollectionHeader showButtons={false} showControls={false} />
<LinkList links={collection.links} showControls={false} />
</ActiveCollectionContext.Provider>
);
SharedCollectionPage.layout = (page: ReactNode) => (
<ContentLayout css={{ width: '900px' }} children={page} />
);
export default SharedCollectionPage;