dev-frontend-with-api
commit
0ab34c9217
@ -0,0 +1,75 @@ |
||||
/** |
||||
* テストページコンポーネント |
||||
* 白紙の状態で表示されるテスト用のページ |
||||
*/ |
||||
import React from 'react'; |
||||
import { |
||||
Container, |
||||
Typography, |
||||
Button |
||||
} from '@mui/material'; |
||||
|
||||
const StockPage: React.FC = () => { |
||||
return ( |
||||
<Container> |
||||
<Typography variant="h4" component="h1" gutterBottom> |
||||
在庫一覧 |
||||
</Typography> |
||||
|
||||
{/* タスク編集ボタン */} |
||||
<Button color="success" |
||||
type="submit" |
||||
variant="contained" |
||||
sx={{ mt: 3, mb: 2, left: '80%' }} |
||||
> |
||||
編集 |
||||
</Button> |
||||
|
||||
{/* タスク削除ボタン */} |
||||
<Button color="error" |
||||
type="submit" |
||||
variant="contained" |
||||
sx={{ mt: 3, mb: 2, left: '82%' }} |
||||
> |
||||
削除 |
||||
</Button> |
||||
|
||||
<Typography variant="h4" component="h1" gutterBottom> |
||||
乳製品 |
||||
</Typography> |
||||
{/* 在庫一覧表示エリア - 青い背景のコンテナ */} |
||||
<div style={{ border: '3px solid black', borderRadius: '8px', backgroundColor: '#add8e6', height: 'auto', padding: '20px' }}> |
||||
</div> |
||||
|
||||
<Typography variant="h4" component="h1" gutterBottom> |
||||
肉・魚 |
||||
</Typography> |
||||
{/* 在庫一覧表示エリア - 青い背景のコンテナ */} |
||||
<div style={{ border: '3px solid black', borderRadius: '8px', backgroundColor: '#add8e6', height: 'auto', padding: '20px' }}> |
||||
</div> |
||||
|
||||
<Typography variant="h4" component="h1" gutterBottom> |
||||
野菜 |
||||
</Typography> |
||||
{/* 在庫一覧表示エリア - 青い背景のコンテナ */} |
||||
<div style={{ border: '3px solid black', borderRadius: '8px', backgroundColor: '#add8e6', height: 'auto', padding: '20px' }}> |
||||
</div> |
||||
|
||||
<Typography variant="h4" component="h1" gutterBottom> |
||||
調味料 |
||||
</Typography> |
||||
{/* 在庫一覧表示エリア - 青い背景のコンテナ */} |
||||
<div style={{ border: '3px solid black', borderRadius: '8px', backgroundColor: '#add8e6', height: 'auto', padding: '20px' }}> |
||||
</div> |
||||
|
||||
<Typography variant="h4" component="h1" gutterBottom> |
||||
その他 |
||||
</Typography> |
||||
{/* 在庫一覧表示エリア - 青い背景のコンテナ */} |
||||
<div style={{ border: '3px solid black', borderRadius: '8px', backgroundColor: '#add8e6', height: 'auto', padding: '20px' }}> |
||||
</div> |
||||
</Container> |
||||
); |
||||
}; |
||||
|
||||
export default StockPage; |
Loading…
Reference in new issue