created appbar component
This commit is contained in:
parent
e544621639
commit
b2eceacab3
|
@ -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>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue