This commit is contained in:
2024-12-10 14:27:30 -05:00
parent e0dbce2450
commit 471a8be856
5 changed files with 163 additions and 17 deletions

10
src/pages/register.tsx Normal file
View File

@@ -0,0 +1,10 @@
// pages/register.js
import UserRegistration from '../components/UserRegistration';
export default function Register() {
return (
<div>
<UserRegistration />
</div>
);
}