Skip to content

Instantly share code, notes, and snippets.

@LucasBadico
Created October 1, 2019 17:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LucasBadico/c39ba703f97c4dac476ddb46a348629e to your computer and use it in GitHub Desktop.
Save LucasBadico/c39ba703f97c4dac476ddb46a348629e to your computer and use it in GitHub Desktop.
import React from 'react';
export class BackofficeHeader extends React.Component {
render() {
const {props} = this
return <div>
<h1>{props.title}</h1>
<p class="subtitle"> {props.subtilte || ''} </p>
{props.children}
</div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment