Skip to content

Instantly share code, notes, and snippets.

@LucasBadico
Last active October 1, 2019 16:57
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/76ff26304eeaf7862e28731cf90e1bc7 to your computer and use it in GitHub Desktop.
Save LucasBadico/76ff26304eeaf7862e28731cf90e1bc7 to your computer and use it in GitHub Desktop.
backoffice-header.react16.js
import React from 'react';
export function BackofficeHeader(props) {
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