14 lines
172 B
TypeScript
14 lines
172 B
TypeScript
import './App.css';
|
|
|
|
import Gallery from './Gallery/index';
|
|
|
|
function App() {
|
|
return (
|
|
<div className="App">
|
|
<Gallery />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|