Strict mode and tweak layout padding

This commit is contained in:
Gregory Schier
2023-03-14 20:19:45 -07:00
parent d159f62138
commit 1170ca4789
9 changed files with 42 additions and 33 deletions

View File

@@ -1,4 +1,5 @@
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';
@@ -13,6 +14,7 @@ export default function Workspaces() {
{w.name}
</Button>
))}
<Editor defaultValue="hello world" />
</VStack>
);
}