Skip to content

Instantly share code, notes, and snippets.

@jaeyoung-kwon
Created November 20, 2025 05:27
Show Gist options
  • Select an option

  • Save jaeyoung-kwon/04f0585bf138847ade9e153039c919fd to your computer and use it in GitHub Desktop.

Select an option

Save jaeyoung-kwon/04f0585bf138847ade9e153039c919fd to your computer and use it in GitHub Desktop.
type Props = {
name: '권씨' | '오씨' | '박씨';
};
const A = ({ name }: Props) => {
return <div>{expensiveCalculation(name)}</div>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment