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