mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
20 lines
731 B
JavaScript
20 lines
731 B
JavaScript
import React, { useContext } from "react"
|
|
import Style from "./PageDashboard.module.css"
|
|
import classNames from "classnames"
|
|
import BoxHeader from "../components/base/BoxHeader"
|
|
import RepositoryEditor from "../components/providers/RepositoryEditor"
|
|
import ContextLanguage from "../contexts/ContextLanguage"
|
|
|
|
|
|
export default function PageDashboard({ children, className, ...props }) {
|
|
const { strings } = useContext(ContextLanguage)
|
|
|
|
return (
|
|
<div className={classNames(Style.PageHome, className)} {...props}>
|
|
<BoxHeader className={Style.Header}>
|
|
{strings.dashboardTitle}
|
|
</BoxHeader>
|
|
<RepositoryEditor className={Style.RepositoryEditor}/>
|
|
</div>
|
|
)
|
|
}
|