mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-07 22:49:26 +08:00
12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
import React from 'react';
|
|
import { SchemaComponent } from '../../schema-component';
|
|
import { roleSchema } from './schemas/roles';
|
|
|
|
export const RoleTable = () => {
|
|
return (
|
|
<div>
|
|
<SchemaComponent schema={roleSchema} />
|
|
</div>
|
|
);
|
|
};
|