init EvenTypeList componennt

This commit is contained in:
Ryukemeister 2023-10-16 17:36:03 +05:30
parent d8f6400add
commit a300a565e4
4 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,7 @@
export function EventType() {
return (
<div>
<h1>Standalone event type goes here</h1>
</div>
);
}

View File

@ -0,0 +1,7 @@
export function EventTypeList() {
return (
<div>
<h1>Event type list goes here</h1>
</div>
);
}

View File

@ -0,0 +1,2 @@
export { EventType } from "./EventType";
export { EventTypeList } from "./EventTypeList";

View File

@ -1 +1,3 @@
export { Booker } from "./booker/Booker";
export { EventType } from "./EventTypeList/EventType";
export { EventTypeList } from "./EventTypeList/EventTypeList";