-
-
Save devSoftecnico/d475195fbcb73cc7bbd797a49b8f804e 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