Last active
March 21, 2022 17:05
-
-
Save AlexCharlton93/2a003f0216ce38adb19c61d64f10984f to your computer and use it in GitHub Desktop.
Functional Component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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