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

17 lines
257 B
JavaScript
Raw Normal View History

2022-03-07 13:23:53 +01:00
import './App.css';
2022-03-10 16:53:07 +01:00
import React from 'react';
import Category from './components /Categories';
import Welcome from './components /Welcome';
2022-03-07 13:23:53 +01:00
function App() {
return (
<div className="App">
2022-03-10 16:53:07 +01:00
<Category />
2022-03-07 13:23:53 +01:00
</div>
2022-03-10 16:53:07 +01:00
2022-03-07 13:23:53 +01:00
);
}
export default App;