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

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>
);
};