mirror of
https://github.com/GithubOrgProjectPiza/frontend.git
synced 2026-09-04 00:26:05 +02:00
17 lines
451 B
JavaScript
17 lines
451 B
JavaScript
import Eingabefeld from "./Components/eingabefeld";
|
|
import "../node_modules/font-awesome/css/font-awesome.min.css";
|
|
import Liste from "./Components/liste";
|
|
|
|
function App() {
|
|
return (
|
|
<div className="App">
|
|
<Eingabefeld label="Name" isPassword={false} placeholder="" />
|
|
<p className="from-green-50">tets</p>
|
|
<br></br>
|
|
<Liste gericht="Pizza" price="€20.00" isColor={true} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|