Last active
January 20, 2020 03:27
-
-
Save codigoconjuan/9f3addcc04bdd5b2b899934b01a994d4 to your computer and use it in GitHub Desktop.
Archivos para GraphQL CRM
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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