CSS
-
[React] React 에서 css 사용하기FRONT-END/React 2020. 11. 4. 13:40
| css 파일 css 폴더의 mystyle.css 을 살펴보니 클래스 . 가 있다. 그렇다면 이렇게 사용할 수 있지 않을까? import React from 'react' import logo from './logo.svg'; import './App.css'; import './css/mystyle.css' import my from './images/torikelly.png' export default class App extends React.Component{ handleDelete = () => { alert('삭제 하시겠어요?'); } handleCreate(){ console.log('handleCreate 함수'); alert('신규등록을 하시겠어요?'); } render(){ //jav..