Skip to content

프론트엔드 코드 컨벤션

sunhpark42 edited this page May 21, 2021 · 1 revision

코드 컨벤션

  • 컴포넌트 선언시 arrow function 형태로 선언
const App = () => {
  return <div></div>;
};

export default App;
Clone this wiki locally