Skip to content

Instantly share code, notes, and snippets.

@kjmczk
Created April 30, 2021 08:28
Show Gist options
  • Save kjmczk/bb960e2814639690dc112a3f08aa61fb to your computer and use it in GitHub Desktop.
Save kjmczk/bb960e2814639690dc112a3f08aa61fb to your computer and use it in GitHub Desktop.
components/Tips.tsx - MDX Blog Simple - Medium
// components/Tips.tsx
type Props = {
tips: string[];
};
const Tips: React.FC<Props> = ({ tips }: Props) => {
return (
<>
<h2>Tips</h2>
<ul>
{tips.map((tip, index) => (
<li key={index}>{tip}</li>
))}
</ul>
</>
);
};
export default Tips;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment