created appbar component

This commit is contained in:
Kristoffer Juelsenn 2022-03-23 10:08:49 +01:00
parent e544621639
commit b2eceacab3
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
import * as React from "react";
import { AppBar, Typography, Toolbar } from "@mui/material";
import HomeImage from "./homeimage";
export default function Appbar() {
return (
<AppBar position="relative" color="primary">
<Toolbar>
<HomeImage />
<Typography>This is an Appbar</Typography>
</Toolbar>
</AppBar>
);
}