Skip to content

Instantly share code, notes, and snippets.

@codigoconjuan
Last active January 20, 2020 03:27
Show Gist options
  • Save codigoconjuan/9f3addcc04bdd5b2b899934b01a994d4 to your computer and use it in GitHub Desktop.
Save codigoconjuan/9f3addcc04bdd5b2b899934b01a994d4 to your computer and use it in GitHub Desktop.
Archivos para GraphQL CRM
import React from 'react';
const Header = () => (
<nav className="navbar navbar-expand-lg navbar-dark bg-primary justify-content-between d-flex">
<div className="container">
<a className="navbar-brand text-light font-weight-bold">CRM</a>
<button className="navbar-toggler" type="button" data-toggle="collapse" data-target="#navegacion" aria-controls="navegacion" aria-expanded="false" aria-label="Toggle navigation">
<span className="navbar-toggler-icon"></span>
</button>
<div className="collapse navbar-collapse" id="navegacion">
<ul className="navbar-nav ml-auto text-right">
<li className="nav-item active">
<a className="btn btn-success">Nuevo Cliente</a>
</li>
</ul>
</div>
</div>
</nav>
);
export default Header;
<link href="https://bootswatch.com/4/flatly/bootstrap.min.css" rel="stylesheet">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment