2021-05-20 10:16:01 +00:00
|
|
|
import React, { useContext } from "react"
|
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-05-25 02:06:14 +00:00
|
|
|
import PageWithHeader from "../components/base/layout/PageWithHeader"
|
|
|
|
import makeIcon from "../utils/makeIcon"
|
|
|
|
import { faPlus } from "@fortawesome/free-solid-svg-icons"
|
2021-04-21 16:21:30 +00:00
|
|
|
|
|
|
|
|
2021-05-25 02:06:14 +00:00
|
|
|
export default function PageRepositoryCreate({ ...props }) {
|
2021-05-18 16:50:02 +00:00
|
|
|
const { strings } = useContext(ContextLanguage)
|
|
|
|
|
2021-04-21 16:21:30 +00:00
|
|
|
return (
|
2021-05-25 02:06:14 +00:00
|
|
|
<PageWithHeader
|
|
|
|
header={
|
|
|
|
<BoxHeader>
|
|
|
|
{makeIcon(faPlus)} {strings.dashboardTitle}
|
|
|
|
</BoxHeader>
|
|
|
|
}
|
|
|
|
{...props}
|
|
|
|
>
|
|
|
|
<RepositoryEditor/>
|
|
|
|
</PageWithHeader>
|
2021-04-21 16:21:30 +00:00
|
|
|
)
|
|
|
|
}
|