1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00
pds-2021-g2-nest/nest_frontend/routes/PageDashboard.js

21 lines
731 B
JavaScript
Raw Normal View History

2021-05-20 10:16:01 +00:00
import React, { useContext } from "react"
import Style from "./PageDashboard.module.css"
2021-04-21 16:21:30 +00:00
import classNames from "classnames"
2021-04-29 14:58:31 +00:00
import BoxHeader from "../components/base/BoxHeader"
2021-04-29 15:04:56 +00:00
import RepositoryEditor from "../components/providers/RepositoryEditor"
2021-05-18 16:50:02 +00:00
import ContextLanguage from "../contexts/ContextLanguage"
2021-04-21 16:21:30 +00:00
export default function PageDashboard({ children, className, ...props }) {
2021-05-18 16:50:02 +00:00
const { strings } = useContext(ContextLanguage)
2021-04-21 16:21:30 +00:00
return (
<div className={classNames(Style.PageHome, className)} {...props}>
<BoxHeader className={Style.Header}>
2021-05-18 16:50:02 +00:00
{strings.dashboardTitle}
</BoxHeader>
<RepositoryEditor className={Style.RepositoryEditor}/>
2021-04-21 16:21:30 +00:00
</div>
)
}