15 lines
371 B
TypeScript
15 lines
371 B
TypeScript
import { SettingsLayout } from "~/components/Layouts/SettingsOptionLayout"
|
|
import OptionLayout from "~/components/Layouts/Layout"
|
|
import { PromptBody } from "~/components/Option/Prompt"
|
|
|
|
const OptionPrompt = () => {
|
|
return (
|
|
<OptionLayout>
|
|
<SettingsLayout>
|
|
<PromptBody />
|
|
</SettingsLayout>
|
|
</OptionLayout>
|
|
)
|
|
}
|
|
|
|
export default OptionPrompt |