main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
402 bytes
|
Rev | Line | |
---|
[d565449] | 1 | import React from "react";
|
---|
| 2 | import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
|
---|
| 3 | import Navbar from "./components/Navbar";
|
---|
| 4 | import styles from "./IMaps.module.css";
|
---|
| 5 | import Home from "./components/pages/Home";
|
---|
| 6 |
|
---|
| 7 | function IMaps() {
|
---|
| 8 | return (
|
---|
| 9 | <>
|
---|
| 10 | <div className={styles.home}>
|
---|
| 11 | <Navbar></Navbar>
|
---|
| 12 | <Home></Home>
|
---|
| 13 | </div>
|
---|
| 14 | </>
|
---|
| 15 | );
|
---|
| 16 | }
|
---|
| 17 |
|
---|
| 18 | export default IMaps;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.