Skip to content

Instantly share code, notes, and snippets.

@AlexCharlton93
Last active March 21, 2022 17:05
Show Gist options
  • Save AlexCharlton93/2a003f0216ce38adb19c61d64f10984f to your computer and use it in GitHub Desktop.
Save AlexCharlton93/2a003f0216ce38adb19c61d64f10984f 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