mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
20 lines
436 B
JavaScript
Executable File
20 lines
436 B
JavaScript
Executable File
import React from "react"
|
|
|
|
import { PagePanelWithNavMenu } from "@components/PagePanels"
|
|
|
|
import Tabs from "./tabs"
|
|
|
|
export default class Home extends React.Component {
|
|
componentDidMount() {
|
|
app.layout.toggleCenteredContent(false)
|
|
}
|
|
|
|
render() {
|
|
return <PagePanelWithNavMenu
|
|
tabs={Tabs}
|
|
primaryPanelClassName="full"
|
|
useSetQueryType
|
|
transition
|
|
/>
|
|
}
|
|
} |