Last active
June 8, 2019 20:34
-
-
Save altyaper/e02743eadd5f7b0973a80f9488d35f5f to your computer and use it in GitHub Desktop.
React 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' | |
function Component({children}) { | |
return ( | |
{children} | |
) | |
} | |
export default Component; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment