From 4fa293fbde945ed11b2420b8ffc5b07c99dff585 Mon Sep 17 00:00:00 2001 From: KimTaeWook <soc07249@ajou.ac.kr> Date: Mon, 10 Jul 2023 15:04:34 +0900 Subject: [PATCH] 1 --- src/App.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/App.js b/src/App.js index 73c0283..588be57 100644 --- a/src/App.js +++ b/src/App.js @@ -1,7 +1,13 @@ import React from 'react'; -import Typography from '@mui/material/Typography'; +import { Typography, AppBar } from '@mui/material'; export default function App () { - return <Typography variant="h1">Hello World</Typography> + return ( + <React.Fragment> + <AppBar position="fixed"> + <Typography align="center" variant="h3" color="inherit">Favorite Music</Typography> + </AppBar> + </React.Fragment> + ) } -- GitLab