We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
- Component - Button - index.ts - Button.tsx // in Style, Type , ... - Button.hook.tsx - Button.util.tsx ...
export const SUCCESS_MESSAGE = '성공!' ✅ export const successMessage ='성공!' ❌
const inputVariable ✅ const InputVariable ❌
const handleClick = () => {} ✅ const handle_click = () => {} ❌
const FunctionalComponent = ({...props}) => {} ✅ const functionalComponent = ({...props}) => {} ❌
type Props = { ... } ✅ interface Props { ... } ❌