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.
joint_exc/frontend/src/pages/StockPage.tsx

16 lines
336 B

/**
*
*
*/
import React from 'react';
import { Box } from '@mui/material';
const StockPage: React.FC = () => {
return (
<Box>
{/* 白紙のページ - 何も表示しない */}
</Box>
);
};
export default StockPage;