Skip to content

Instantly share code, notes, and snippets.

@devSoftecnico
Forked from codigoconjuan/Header.js
Created December 5, 2018 17:08
Show Gist options
  • Save devSoftecnico/d475195fbcb73cc7bbd797a49b8f804e to your computer and use it in GitHub Desktop.
Save devSoftecnico/d475195fbcb73cc7bbd797a49b8f804e 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