first commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
'use client';
|
||||
|
||||
import Receipt from "../Components/Receipt/Receipt";
|
||||
import SearchUser from "../Components/SearchUser/searchUser";
|
||||
import Selection from "../Components/Selection/Selection";
|
||||
import StepNavigator from "../Components/StepNavigator/StepNavigator";
|
||||
import "./inscriptions.css"
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<section className='containerForm'>
|
||||
<h2 className='title'> INSCRIPCION </h2>
|
||||
<SearchUser />
|
||||
|
||||
<StepNavigator totalSteps={2} onFinish={() => console.log()}>
|
||||
<Selection/>
|
||||
<Receipt />
|
||||
</StepNavigator>
|
||||
|
||||
</section>
|
||||
|
||||
);
|
||||
}
|
||||
//IO
|
||||
Reference in New Issue
Block a user