Fix Codemirror performance!!

This commit is contained in:
Gregory Schier
2023-03-09 10:50:55 -08:00
parent 4d806ff2b1
commit e4f6c919dc
19 changed files with 848 additions and 211 deletions

View File

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