12 lines
227 B
TypeScript
12 lines
227 B
TypeScript
import Navbar from "../components/Navbar";
|
|
import BuildingsGrid from "./components/BuildingsGrid";
|
|
|
|
function List() {
|
|
return (
|
|
<div>
|
|
<Navbar active="2"/>
|
|
<BuildingsGrid/>
|
|
</div>
|
|
);
|
|
}
|
|
export default List; |