mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 03:24:16 +00:00
23 lines
468 B
JavaScript
Executable File
23 lines
468 B
JavaScript
Executable File
import React from "react"
|
|
|
|
import { Icons } from "components/Icons"
|
|
|
|
import { PagePanelWithNavMenu } from "components/PagePanels"
|
|
|
|
import Tabs from "./tabs"
|
|
|
|
const NavMenuHeader = <h2>
|
|
<Icons.MdLiveTv />
|
|
TV
|
|
</h2>
|
|
|
|
export default class TVDashboard extends React.Component {
|
|
render() {
|
|
return <PagePanelWithNavMenu
|
|
tabs={Tabs}
|
|
navMenuHeader={NavMenuHeader}
|
|
useSetQueryType
|
|
transition
|
|
/>
|
|
}
|
|
} |