first commit

This commit is contained in:
2025-05-27 17:02:32 +09:00
commit 191fe24ed2
36 changed files with 13550 additions and 0 deletions

8
src/common/Loading.tsx Normal file
View File

@@ -0,0 +1,8 @@
import React from 'react';
import './Loading.css';
const Loading: React.FC = () => {
return <div className="loading">Loading...</div>;
};
export default Loading;