17 lines
257 B
JavaScript
17 lines
257 B
JavaScript
import './App.css';
|
|
import React from 'react';
|
|
import Category from './components /Categories';
|
|
import Welcome from './components /Welcome';
|
|
|
|
|
|
function App() {
|
|
return (
|
|
<div className="App">
|
|
<Category />
|
|
</div>
|
|
|
|
);
|
|
}
|
|
|
|
export default App;
|