13 lines
264 B
TypeScript
13 lines
264 B
TypeScript
import OptionLayout from "~/components/Layouts/Layout"
|
|
import { ListDetail } from "~/components/Option/Metering/listDetail"
|
|
|
|
const OptionSettings = () => {
|
|
return (
|
|
<OptionLayout>
|
|
<ListDetail />
|
|
</OptionLayout>
|
|
)
|
|
}
|
|
|
|
export default OptionSettings
|