mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-26 15:04:18 +00:00
18 lines
667 B
JavaScript
18 lines
667 B
JavaScript
import React from "react"
|
|
import Style from "./PageRepositories.module.css"
|
|
import classNames from "classnames"
|
|
import BoxWithHeader from "../components/BoxWithHeader"
|
|
|
|
|
|
export default function PageRepositories({ children, className, ...props }) {
|
|
return (
|
|
<div className={classNames(Style.PageRepositories, className)} {...props}>
|
|
<BoxWithHeader header={"Your active repositories"} className={Style.ActiveRepositories}>
|
|
a
|
|
</BoxWithHeader>
|
|
<BoxWithHeader header={"Your archived repositories"} className={Style.ArchivedRepositories}>
|
|
b
|
|
</BoxWithHeader>
|
|
</div>
|
|
)
|
|
}
|