mirror of
https://github.com/myfatemi04/wheelshare-frontend.git
synced 2025-04-16 00:50:18 -04:00
17 lines
326 B
TypeScript
17 lines
326 B
TypeScript
import ActiveCarpools from './ActiveCarpools/ActiveCarpools';
|
|
import ActiveEvents from './ActiveEvents/Events';
|
|
import Groups from './Groups/Groups';
|
|
import Header from './Header/Header';
|
|
|
|
export default function WheelShare() {
|
|
return (
|
|
<>
|
|
<Header />
|
|
|
|
<Groups />
|
|
<ActiveCarpools />
|
|
<ActiveEvents />
|
|
</>
|
|
);
|
|
}
|