Better request delete and formatting

This commit is contained in:
Gregory Schier
2023-03-15 09:41:38 -07:00
parent 8915915c47
commit 264e64a996
7 changed files with 76 additions and 41 deletions

View File

@@ -1,8 +1,7 @@
import { useWorkspaces } from '../hooks/useWorkspaces';
import { Button } from './core/Button';
import { Editor } from './core/Editor';
import { Heading } from './core/Heading';
import { VStack } from './core/Stacks';
import { useWorkspaces } from '../hooks/useWorkspaces';
export default function Workspaces() {
const workspaces = useWorkspaces();
@@ -14,7 +13,6 @@ export default function Workspaces() {
{w.name}
</Button>
))}
<Editor defaultValue="hello world" />
</VStack>
);
}