-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from Sports-day/feature/imizu-automation
射水キャンパス用に自動入力機能を修正
- Loading branch information
Showing
13 changed files
with
962 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
app/(authenticated)/teams/team-creating-automation/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import {Breadcrumbs, Link, Stack, Typography} from "@mui/material"; | ||
import CardBackground from "@/components/layout/cardBackground"; | ||
import React from "react"; | ||
import NextLink from "next/link"; | ||
import TeamCreatingAutomation from "@/components/teams/automatic-entry/teamCreatingAutomation"; | ||
|
||
export default async function TeamAutomaticRenamePage() { | ||
|
||
return ( | ||
<Stack spacing={1} mx={2} my={3}> | ||
<Breadcrumbs aria-label="breadcrumb" sx={{pl: 2}}> | ||
<Link | ||
underline="hover" | ||
color="inherit" | ||
href="/" | ||
component={NextLink} | ||
> | ||
管理者のダッシュボード | ||
</Link> | ||
<Link | ||
underline="hover" | ||
color="inherit" | ||
href={"/teams/"} | ||
component={NextLink} | ||
> | ||
チーム管理 | ||
</Link> | ||
<Typography color="text.primary"> | ||
射水チーム作成 | ||
</Typography> | ||
</Breadcrumbs> | ||
<CardBackground> | ||
<TeamCreatingAutomation/> | ||
</CardBackground> | ||
</Stack> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.