Material UI
-
[React] 웹사이트 꾸미기: Material UIReact & Node.js 2020. 4. 29. 11:35
Material UI를 적용해 보고 자신만의 스타일을 'withStyles'를 이용해서 적용해 보자 (Material UI 참고 사이트: https://material-ui.com/demos/tables) Material UI 설치: npm install @material-ui/core --- src > App.js import React, { Component } from 'react'; import './App.css'; import Customer from './components/Customer.js'; import Table from '@material-ui/core/Table'; import Paper from '@material-ui/core/Paper'; import TableHead fr..