This commit is contained in:
Gregory Schier
2023-03-09 10:58:27 -08:00
parent ee36baf432
commit 7e9babf515
2 changed files with 0 additions and 2 deletions

Binary file not shown.

View File

@@ -1,5 +1,4 @@
import { ButtonLink } from '../components/ButtonLink'; import { ButtonLink } from '../components/ButtonLink';
import { Editor } from '../components/Editor/Editor';
import { Heading } from '../components/Heading'; import { Heading } from '../components/Heading';
import { VStack } from '../components/Stacks'; import { VStack } from '../components/Stacks';
import { useWorkspaces } from '../hooks/useWorkspaces'; import { useWorkspaces } from '../hooks/useWorkspaces';
@@ -14,7 +13,6 @@ export function Workspaces(props: { path: string }) {
{w.name} {w.name}
</ButtonLink> </ButtonLink>
))} ))}
<Editor className="h-20 w-full" defaultValue="hello" />
</VStack> </VStack>
); );
} }