Skip to content

Instantly share code, notes, and snippets.

@elijahmanor
Created October 11, 2018 05:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elijahmanor/89e551f1da7358db6f32d348ab39fde5 to your computer and use it in GitHub Desktop.
Save elijahmanor/89e551f1da7358db6f32d348ab39fde5 to your computer and use it in GitHub Desktop.
Medium Article: Fragment Short Syntax - App.css Code Snippet
import React from "react";
const TwoThree = () => (
<>
<li>Two</li>
<li>Three</li>
</>
);
export default List() {
return (
<ul>
<li>One</li>
<TwoThree />
<li>Four</li>
</ul>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment