From 33839479e269bed905f9eefc374060b9d3ee7e19 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Tue, 5 Oct 2021 12:35:40 +0200 Subject: feat(preview): filesystem basics in place --- components/Sidebar/Link.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 components/Sidebar/Link.tsx (limited to 'components/Sidebar/Link.tsx') diff --git a/components/Sidebar/Link.tsx b/components/Sidebar/Link.tsx new file mode 100644 index 0000000..789873a --- /dev/null +++ b/components/Sidebar/Link.tsx @@ -0,0 +1,11 @@ +import { Text } from '@chakra-ui/react' + +export interface LinkProps { + id: string +} + +export const Link = (props: LinkProps) => { + const { id } = props + + return {id} +} -- cgit v1.2.3