Basic game system editor

This commit is contained in:
Emma
2023-06-13 21:21:47 -06:00
parent a7337bd33a
commit e78e4304a4
12 changed files with 180 additions and 13 deletions

View File

@@ -3,5 +3,5 @@ import { Schema } from '../../types/schema';
export const SchemaEditAtom = atom<Schema>({
key: 'schema-edit',
default: {name: '', types: {}, templates: {}}
default: {name: '', types: {}, templates: {}, id: ''}
});