Skip to content

Instantly share code, notes, and snippets.

@mfrancois3k
Forked from AlexCharlton93/react
Created March 21, 2022 17:05
Show Gist options
  • Save mfrancois3k/1b64a9400db2c2ff3d5e99fe3397bbbb to your computer and use it in GitHub Desktop.
Save mfrancois3k/1b64a9400db2c2ff3d5e99fe3397bbbb to your computer and use it in GitHub Desktop.
Functional Component
import React from 'react';
export const FunctionalComponent = ({ propOne, propTwo }) => {
return (
<>
{propOne}
{propTwo}
</>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment