Skip to content

Instantly share code, notes, and snippets.

@UsmanHaider15
Created November 5, 2021 23:03
Show Gist options
  • Save UsmanHaider15/dcf65c3d0bb55a773a859ac719ead20e to your computer and use it in GitHub Desktop.
Save UsmanHaider15/dcf65c3d0bb55a773a859ac719ead20e to your computer and use it in GitHub Desktop.
import React from "react";
const List = () => {
return (
<div>
<ul>
<li>First Item</li>
<li>Second Item</li>
<li>Third Item </li>
<li>
Fourth Item
<ul>
<li>First Nested Item</li>
<li>Second Nested Item</li>
<li>Third Nested Item</li>
</ul>
</li>
<li>Fifth Item</li>
</ul>
</div>
);
};
export default List;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment