Skip to content
Snippets Groups Projects
Select Git revision
  • 754b45ffed073a8707bceebee70dde61beab2278
  • master default protected
2 results

App.js

Blame
  • 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>
        )    
    }