Last active
March 15, 2021 02:08
-
-
Save night-fury-rider/a8437b66d0e7d72b882f94c73eec799e to your computer and use it in GitHub Desktop.
React 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'; | |
function UVHeader(props: any) { | |
return ( | |
<div className="uv-header-container"> | |
<span>{props.data.title}</span> | |
</div> | |
); | |
} | |
export default UVHeader; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment