mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
17 lines
605 B
JavaScript
17 lines
605 B
JavaScript
import React from "react"
|
|
import Style from "./PageDashboard.module.css"
|
|
import classNames from "classnames"
|
|
import BoxHeader from "../components/base/BoxHeader"
|
|
import RepositoryEditor from "../components/providers/RepositoryEditor"
|
|
|
|
|
|
export default function PageDashboard({ children, className, ...props }) {
|
|
return (
|
|
<div className={classNames(Style.PageHome, className)} {...props}>
|
|
<BoxHeader className={Style.Header}>
|
|
Crea una nuova repository
|
|
</BoxHeader>
|
|
<RepositoryEditor className={Style.RepositoryEditor}/>
|
|
</div>
|
|
)
|
|
}
|