This commit is contained in:
root
2025-12-26 20:17:17 +09:00
parent ba4bffc28e
commit 13094084d4
3 changed files with 52 additions and 0 deletions

17
src/app/main/page.tsx Normal file
View File

@@ -0,0 +1,17 @@
import ImgInputForm_client from '../components/ImgInputForm.client'
import ImgInputForm_server from '../components/ImgInputForm.server'
const MainPage = () => {
return (
<>
<ImgInputForm_server />
<ImgInputForm_client />
</>
)
}
export default MainPage