init commit

This commit is contained in:
prod-tech
2024-11-17 02:31:42 +03:00
commit cf933c770c
217 changed files with 19340 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import '../styles/CreateGroup.css'
import CreateGroup from '../Components/CreateGroup/CreateGroup';
import { useNavigate } from 'react-router-dom';
import { LucideArrowLeft } from 'lucide-react';
import React from 'react';
const CreateGroupPage = () => {
const navigate = useNavigate()
return (
<div className='p-4'>
<header className='create-header'>
<h1 className='text-2xl'>Создание события</h1>
</header>
<main className=''>
<CreateGroup />
</main>
</div>
)
}
export default CreateGroupPage