Radix, request methods, and theme stuff

This commit is contained in:
Gregory Schier
2023-02-18 15:53:03 -08:00
parent e69ccb62da
commit 92f0ead969
17 changed files with 6989 additions and 54 deletions
+1 -1
View File
@@ -7,5 +7,5 @@ interface Props {
export default function Editor(props: Props) {
const { ref } = useCodeMirror({ value: props.value });
return <div ref={ref} className="m-0 text-sm rounded-lg bg-gray-800 overflow-hidden" />;
return <div ref={ref} className="m-0 text-sm overflow-hidden" />;
}