2022-02-17 01:06:42 +08:00

14 lines
292 B
TypeScript

import React from 'react';
import { SchemaComponent } from '../../schema-component';
import { collectionSchema } from './schemas/collections';
export const ConfigurationTable = () => {
return (
<div>
<SchemaComponent
schema={collectionSchema}
/>
</div>
);
};