zhou zhou
6 天以前 6877c9caa25162e570a3e2a99a5b2ce3ef88368b
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from "react";
import { Create, SimpleForm } from "react-admin";
import AiPromptForm from "./AiPromptForm";
 
const AiPromptCreate = () => (
    <Create redirect="list">
        <SimpleForm defaultValues={{ code: "home.default", scene: "home", status: 1 }}>
            <AiPromptForm />
        </SimpleForm>
    </Create>
);
 
export default AiPromptCreate;