Button (Not ready)

This commit is contained in:
brausjonas
2023-04-27 16:58:50 +02:00
parent 540b15c0b0
commit 1d087d7996
5 changed files with 41 additions and 52 deletions
+6 -18
View File
@@ -1,25 +1,13 @@
import logo from './logo.svg';
import './App.css';
import Button from "./components/Button";
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
return (
<div className="App">
<Button text={"Test"} PaddingX={20} PaddingY={10}/>
</div>
);
}
export default App;