mirror of
https://codeberg.org/andyscott/ExerciseTracker.git
synced 2024-12-21 11:43:10 -05:00
Add icon for logo
This commit is contained in:
parent
a3ef77d503
commit
2b36d6bfa7
1 changed files with 2 additions and 0 deletions
|
@ -6,6 +6,7 @@ import CreatePage from "./pages/CreatePage";
|
|||
import EditPage from "./pages/EditPage";
|
||||
import { useState } from "react";
|
||||
import { Link } from "react-router-dom";
|
||||
import { MdRunCircle } from "react-icons/md";
|
||||
|
||||
function App() {
|
||||
const [exerciseToEdit, setExerciseToEdit] = useState();
|
||||
|
@ -14,6 +15,7 @@ function App() {
|
|||
<Router>
|
||||
<div className="App-header">
|
||||
<header>
|
||||
<MdRunCircle className="logo" />
|
||||
<h1>Exercise Tracker</h1>
|
||||
<p>Create, edit, and delete exercises</p>
|
||||
</header>
|
||||
|
|
Loading…
Reference in a new issue