This file contains hidden or 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
| import { useState } from "react"; | |
| import Table from "@mui/material/Table"; | |
| import TableBody from "@mui/material/TableBody"; | |
| import TableCell from "@mui/material/TableCell"; | |
| import TableContainer from "@mui/material/TableContainer"; | |
| import TableHead from "@mui/material/TableHead"; | |
| import TableRow from "@mui/material/TableRow"; | |
| import Paper from "@mui/material/Paper"; | |
| import "./App.css"; | |
| import { |
This file contains hidden or 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
| import { useState } from "react"; | |
| import "./App.css"; | |
| import { Button, Container } from "@mui/material"; | |
| import Modal from "react-modal"; | |
| const customStyles = { | |
| content: { | |
| top: "20%", | |
| left: "50%", | |
| right: "auto", |
This file contains hidden or 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
| import { Box, Button, makeStyles } from "@mui/material"; | |
| import * as React from "react"; | |
| import { useState } from "react"; | |
| import Modal from "react-modal"; | |
| interface Props { | |
| isOpen: boolean; | |
| closeModal: () => void; | |
| } |
This file contains hidden or 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
| /* ValueObjectで表現されたクラス */ | |
| class User { | |
| UserId userId; | |
| UserName userName; | |
| } | |
| class UserId { | |
| int value; | |
| } |