2024-03-23 14:44:05 +05:30
|
|
|
import { SettingsLayout } from "~/components/Layouts/SettingsOptionLayout"
|
|
|
|
|
import OptionLayout from "~/components/Layouts/Layout"
|
|
|
|
|
import { PromptBody } from "~/components/Option/Prompt"
|
2024-02-28 22:50:38 +05:30
|
|
|
|
2024-05-13 12:44:44 +05:30
|
|
|
const OptionPrompt = () => {
|
2024-02-28 22:50:38 +05:30
|
|
|
return (
|
|
|
|
|
<OptionLayout>
|
2024-03-03 19:55:43 +05:30
|
|
|
<SettingsLayout>
|
|
|
|
|
<PromptBody />
|
|
|
|
|
</SettingsLayout>
|
2024-02-28 22:50:38 +05:30
|
|
|
</OptionLayout>
|
|
|
|
|
)
|
|
|
|
|
}
|
2024-05-13 12:44:44 +05:30
|
|
|
|
|
|
|
|
export default OptionPrompt
|