From ca5cfb62c1cc1e2850103ba13ede59380e6808ba Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Mon, 18 Oct 2021 00:52:21 +0200 Subject: feat: exclude nodes from local graph (#115) --- components/Sidebar/Title.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 components/Sidebar/Title.tsx (limited to 'components/Sidebar/Title.tsx') diff --git a/components/Sidebar/Title.tsx b/components/Sidebar/Title.tsx new file mode 100644 index 0000000..5d39190 --- /dev/null +++ b/components/Sidebar/Title.tsx @@ -0,0 +1,25 @@ +import { Flex, Heading } from '@chakra-ui/react' +import React from 'react' +import { BiFile } from 'react-icons/bi' + +import { OrgRoamNode } from '../../api' +export interface TitleProps { + previewNode: OrgRoamNode +} + +export const Title = (props: TitleProps) => { + const { previewNode } = props + return ( + + {/* { + * // e.preventDefault() + * // openContextMenu(previewNode, e) + * // }} + * /> */} + + {previewNode?.title} + + + ) +} -- cgit v1.2.3