feat: playground

This commit is contained in:
jialin
2024-05-15 19:36:17 +08:00
parent 72a53424fa
commit fd9f3d8bd9
19 changed files with 380 additions and 20 deletions
@@ -0,0 +1,13 @@
import { Form } from "antd";
import { useState } from "react";
const ParamsSettings:React.FC = () => {
const [params, setParams] = useState({
name: 'jack',
age: 18
});
return (<Form></Form>)
};
export default ParamsSettings;