Skip to content

Commit 128f056

Browse files
Bradley Marquesraymond-lam
authored andcommitted
Undoes some test code
1 parent 905859b commit 128f056

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

example/src/PlaygroundContainer.js

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,8 @@ const useStyles = createUseStyles({
1818
},
1919
});
2020

21-
const jsonSchema = {
22-
type: 'object',
23-
definitions: {
24-
address: {
25-
title: 'Address',
26-
type: 'object',
27-
properties: {
28-
lineOne: { type: 'string' },
29-
lineTwo: { type: 'string' }
30-
}
31-
},
32-
},
33-
};
34-
3521
export default function PlaygroundContainer({ title }: { title: string }) {
36-
const [schema, setSchema] = React.useState(JSON.stringify(jsonSchema));
22+
const [schema, setSchema] = React.useState('{}');
3723
const [uischema, setUischema] = React.useState('{}');
3824
const classes = useStyles();
3925
return (

0 commit comments

Comments
 (0)