create team assignment page

This commit is contained in:
memeriau
2022-04-07 22:04:07 +02:00
parent cef7c5f7b0
commit 220a8ac100
6 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { FC, memo } from "react"
import ContentTitle from "../ui/Content/ContentTitle"
import withUserConnected from "../../utils/withUserConnected"
import { fetchTeamListIfNeed } from "../../store/teamList"
const TeamAssignment: FC = (): JSX.Element => (
<>
<ContentTitle title="Affectation aux équipes" />
</>
)
export default memo(withUserConnected(TeamAssignment))
export const fetchFor = [fetchTeamListIfNeed]

View File

@@ -0,0 +1,7 @@
@import "../../theme/variables";
@import "../../theme/mixins";
.title {
padding-bottom: 10px;
font-weight: bold;
}