init EvenTypeList componennt
parent
d8f6400add
commit
a300a565e4
|
@ -0,0 +1,7 @@
|
|||
export function EventType() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Standalone event type goes here</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
export function EventTypeList() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Event type list goes here</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
|
@ -0,0 +1,2 @@
|
|||
export { EventType } from "./EventType";
|
||||
export { EventTypeList } from "./EventTypeList";
|
|
@ -1 +1,3 @@
|
|||
export { Booker } from "./booker/Booker";
|
||||
export { EventType } from "./EventTypeList/EventType";
|
||||
export { EventTypeList } from "./EventTypeList/EventTypeList";
|
||||
|
|
Loading…
Reference in New Issue