forked from magrathealabs/template-projeto-selecao
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request magrathealabs#8 from peterbrendel/front-main
Front main
- Loading branch information
Showing
4 changed files
with
117 additions
and
26 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { Navbar, Form, InputGroup, FormControl, Button } from 'react-bootstrap'; | ||
import React from 'react'; | ||
import Image from './github'; | ||
|
||
export default () => { | ||
return ( | ||
<> | ||
<Navbar className="bg-dark justify-content-between"> | ||
<Form inline> | ||
<Navbar.Brand href="#home"> | ||
<Image/> | ||
</Navbar.Brand> | ||
<InputGroup> | ||
<InputGroup.Prepend> | ||
<InputGroup.Text id="basic-addon1">/</InputGroup.Text> | ||
</InputGroup.Prepend> | ||
<FormControl | ||
placeholder="Username" | ||
aria-label="Username" | ||
aria-describedby="basic-addon1" | ||
/> | ||
<Button type="search" style={{ "border-radius": "0px 5px 5px 0px"}}>Search Repos</Button> | ||
</InputGroup> | ||
</Form> | ||
<Form inline> | ||
<Button type="login">Login with Github</Button> | ||
</Form> | ||
</Navbar> | ||
</> | ||
); | ||
} |
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