Project 'noh0605/react-material' was moved to 'HyunjinNoh/react-material'. Please update any links and bookmarks that may still have the old path.
Select Git revision
-
HyunjinNoh authoredHyunjinNoh authored
App.js 547 B
import React from 'react';
import {Typography, AppBar} from '@mui/material';
import MusicList from './MusicList';
import music_list from './data';
export default function App () {
return (
<React.Fragment>
<AppBar positions = "fixed">
<Typography align = "center" variant = "h3" color = "inherit">Favorite Music</Typography>
</AppBar>
<div style = {{height: 60, width: '100%'}}></div>
<MusicList list = {music_list}></MusicList>
</React.Fragment>
)
}