tachybase_todo/packages/plugins/multi-app-manager/src/client/Settings.tsx
chenos 883f1e6fd1
fix: eslint (#1759)
* fix: eslint

* fix: eslint --fix

* fix: changelog
2023-04-25 13:12:14 +08:00

16 lines
281 B
TypeScript

import { SchemaComponent } from '@nocobase/client';
import { Card } from 'antd';
import React from 'react';
const schema = {
type: 'object',
};
export const Settings = () => {
return (
<Card bordered={false}>
<SchemaComponent schema={schema} />
</Card>
);
};