-
Notifications
You must be signed in to change notification settings - Fork 9
네이밍 규칙
jin-Pro edited this page Jan 31, 2022
·
3 revisions
export const SUCCESS_MESSAGE = '성공!' ✅
export const successMessage ='성공!' ❌
const inputVariable ✅
const InputVariable ❌
const handleClick = () => {} ✅
const handle_click = () => {} ❌
const FunctionalComponent = ({...props}) => {} ✅
const functionalComponent = ({...props}) => {} ❌