2021-04-21 18:21:30 +02:00
|
|
|
import React from "react"
|
2021-04-25 17:22:52 +02:00
|
|
|
import Style from "./PageDashboard.module.css"
|
2021-04-21 18:21:30 +02:00
|
|
|
import classNames from "classnames"
|
2021-04-29 16:58:31 +02:00
|
|
|
import BoxHeader from "../components/base/BoxHeader"
|
2021-04-29 17:04:56 +02:00
|
|
|
import RepositoryEditor from "../components/providers/RepositoryEditor"
|
2021-04-21 18:21:30 +02:00
|
|
|
|
|
|
|
|
2021-04-25 17:22:52 +02:00
|
|
|
export default function PageDashboard({ children, className, ...props }) {
|
2021-04-21 18:21:30 +02:00
|
|
|
return (
|
|
|
|
<div className={classNames(Style.PageHome, className)} {...props}>
|
2021-05-07 17:41:25 +02:00
|
|
|
<BoxHeader className={Style.Header}>
|
2021-05-13 18:24:52 +02:00
|
|
|
Crea una nuova repository
|
2021-05-07 17:41:25 +02:00
|
|
|
</BoxHeader>
|
|
|
|
<RepositoryEditor className={Style.RepositoryEditor}/>
|
2021-04-21 18:21:30 +02:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|