11 lines
177 B
TypeScript
11 lines
177 B
TypeScript
|
|
import MainFrame from "../../components/MainFrame"
|
||
|
|
|
||
|
|
const Support = () => {
|
||
|
|
return (
|
||
|
|
|
||
|
|
<MainFrame title="Manage Support">
|
||
|
|
|
||
|
|
</MainFrame>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
export default Support
|