Skip to content

Instantly share code, notes, and snippets.

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