Padding, width, height, text are optional, if not set there are default values (no css)
13 lines
202 B
JavaScript
13 lines
202 B
JavaScript
import './App.css';
|
|
import Button from "./components/Button";
|
|
|
|
function App() {
|
|
return (
|
|
<div className="App">
|
|
<Button/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|