Skip to content

Instantly share code, notes, and snippets.

@night-fury-rider
Last active March 15, 2021 02:08
Show Gist options
  • Save night-fury-rider/a8437b66d0e7d72b882f94c73eec799e to your computer and use it in GitHub Desktop.
Save night-fury-rider/a8437b66d0e7d72b882f94c73eec799e to your computer and use it in GitHub Desktop.
React Functional component
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