+ autocomplete + thunk

This commit is contained in:
2020-07-21 19:39:56 +02:00
parent 29efa13410
commit 2bcbfef8ba
16 changed files with 255 additions and 38 deletions

View File

@@ -1,14 +1,14 @@
import React from "react";
import ButtonSecondary from "./ButtonSecondary";
import logo from "../public/logo_mint.svg";
import ButtonPrimary from "./ButtonPrimary";
import logo from "../public/logo_white.svg";
export default function TopBar() {
return (
<div className="topBar">
<img src={logo} className="topBarLogo" alt="Menui logo" />
<div>
<ButtonSecondary text="Dodaj Lokal" />
<ButtonSecondary text="Logowanie" />
<ButtonPrimary text="Dodaj Lokal" />
<ButtonPrimary text="Logowanie" />
</div>
</div>
);