Files
old-kivi-za-auta-react/kivi-cars/src/containers/App.js

15 lines
204 B
JavaScript
Raw Normal View History

2022-03-07 13:23:53 +01:00
import './App.css';
2022-03-11 09:40:12 +01:00
import React from 'react';
2022-03-14 16:08:14 +01:00
import LandingPage from './LandingPage';
2022-03-14 14:12:23 +01:00
2022-03-07 13:23:53 +01:00
function App() {
2022-03-11 12:05:18 +01:00
2022-03-07 13:23:53 +01:00
return (
<div className="App">
2022-03-14 16:08:14 +01:00
<LandingPage/>
2022-03-14 16:21:17 +01:00
2022-03-07 13:23:53 +01:00
</div>
);
}
2022-03-11 10:05:33 +01:00
export default App;