7 lines
203 B
TypeScript
7 lines
203 B
TypeScript
import { atom } from 'recoil';
|
|
import { Schema } from '../../types/schema';
|
|
|
|
export const SchemaEditAtom = atom<Schema>({
|
|
key: 'schema-edit',
|
|
default: {name: '', types: {}, templates: {}, id: ''}
|
|
}); |