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