Skip to content

Commit 44f927a

Browse files
author
Peter Brendel
committed
Changed filename
1 parent 02dba4c commit 44f927a

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import { Navbar, Form, InputGroup, FormControl, Button } from 'react-bootstrap';
2+
import React from 'react';
3+
import Image from './github';
4+
5+
export default () => {
6+
return (
7+
<>
8+
<Navbar className="bg-dark justify-content-between">
9+
<Form inline>
10+
<Navbar.Brand href="#home">
11+
<Image/>
12+
</Navbar.Brand>
13+
<InputGroup>
14+
<InputGroup.Prepend>
15+
<InputGroup.Text id="basic-addon1">/</InputGroup.Text>
16+
</InputGroup.Prepend>
17+
<FormControl
18+
placeholder="Username"
19+
aria-label="Username"
20+
aria-describedby="basic-addon1"
21+
/>
22+
<Button type="search" style={{ "border-radius": "0px 5px 5px 0px"}}>Search Repos</Button>
23+
</InputGroup>
24+
</Form>
25+
<Form inline>
26+
<Button type="login">Login with Github</Button>
27+
</Form>
28+
</Navbar>
29+
</>
30+
);
31+
}

0 commit comments

Comments
 (0)