You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
336 B
16 lines
336 B
5 months ago
|
/**
|
||
|
* テストページコンポーネント
|
||
|
* 白紙の状態で表示されるテスト用のページ
|
||
|
*/
|
||
|
import React from 'react';
|
||
|
import { Box } from '@mui/material';
|
||
|
|
||
|
const StockPage: React.FC = () => {
|
||
|
return (
|
||
|
<Box>
|
||
|
{/* 白紙のページ - 何も表示しない */}
|
||
|
</Box>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default StockPage;
|