mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-07 22:49:26 +08:00
14 lines
292 B
TypeScript
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>
|
|
);
|
|
};
|