2024-03-23 14:44:05 +05:30
|
|
|
import { SettingsLayout } from "~/components/Layouts/SettingsOptionLayout"
|
|
|
|
|
import OptionLayout from "~/components/Layouts/Layout"
|
|
|
|
|
import { OptionShareBody } from "~/components/Option/Share"
|
2024-03-09 18:43:39 +05:30
|
|
|
|
|
|
|
|
export const OptionShare = () => {
|
|
|
|
|
return (
|
|
|
|
|
<OptionLayout>
|
|
|
|
|
<SettingsLayout>
|
|
|
|
|
<OptionShareBody />
|
|
|
|
|
</SettingsLayout>
|
|
|
|
|
</OptionLayout>
|
|
|
|
|
)
|
|
|
|
|
}
|