728x90
반응형
React compnent 함수표현식
-
React - Component - 1Front-end/React 2023. 4. 26. 22:26
React Component React Component 란 UI를 재사용 할 수 있도록 개별적으로 여러 조각으로 나누는 단위이다. component를 함수로 생성해서 사용할 수 있다. /* App.css */ .modal { margin-top: 20px; padding: 20px; background: #eee; text-align: left; } // App.js /* eslint-disable */ import logo from './logo.svg'; import './App.css'; import { useState } from 'react'; // App() 또한 컴포넌트이다. function App() { let post = 'Restaurant'; let postId = 'postId';..