15 lines
240 B
TypeScript
15 lines
240 B
TypeScript
import React from 'react'
|
|
import SettingPage from './SettingPage'
|
|
|
|
export const metadata = {
|
|
title: 'Settings | Presenton',
|
|
description: 'Settings page',
|
|
}
|
|
const page = () => {
|
|
|
|
return (
|
|
<SettingPage />
|
|
)
|
|
}
|
|
|
|
export default page
|