-
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.
- Loading branch information
Emerson Duarte De Amorim
committed
Aug 14, 2019
1 parent
ece5548
commit d4e4b37
Showing
6 changed files
with
91 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import React from 'react'; | ||
|
||
export const ContainerComponent = () => ( | ||
<> | ||
<div> </div> | ||
</> | ||
) | ||
|
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,19 @@ | ||
import React from 'react'; | ||
|
||
export const HeaderComponent = () => ( | ||
<> | ||
<h1>LOGO</h1> | ||
<ul> | ||
<li> | ||
<a href="#">topico 1</a> | ||
</li> | ||
<li> | ||
<a href="#">topico 2</a> | ||
</li> | ||
<li> | ||
<a href="#">topico 3</a> | ||
</li> | ||
</ul> | ||
</> | ||
) | ||
|
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,21 @@ | ||
import React from 'react'; | ||
|
||
export const NavBarComponent = () => ( | ||
<> | ||
<ul> | ||
<li> | ||
<a href="#">Sessao 1</a> | ||
</li> | ||
<li> | ||
<a href="#">Sessao 2</a> | ||
</li> | ||
<li> | ||
<a href="#">Sessao 3</a> | ||
</li> | ||
<li> | ||
<a href="#">Sessao 4</a> | ||
</li> | ||
</ul> | ||
</> | ||
) | ||
|
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,8 @@ | ||
import React from 'react'; | ||
|
||
export const PostComponent = () => ( | ||
<> | ||
<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras ante mi, fermentum sed justo a, fringilla aliquam libero. Aliquam a bibendum purus. Aenean tincidunt varius scelerisque. Phasellus at lacinia augue. Curabitur vitae leo consequat elit gravida semper vitae at purus. Sed tempor quam nec gravida posuere. Aliquam fermentum tellus non quam elementum feugiat. Aenean ac libero vitae est tristique semper. Sed feugiat velit mi. Integer et mauris pulvinar, lacinia lectus sit amet, tempus quam. Cras vitae purus elementum, rutrum erat eu, pellentesque tellus. Maecenas efficitur porta erat, vitae tincidunt nunc ultricies at.</div> | ||
</> | ||
) | ||
|
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,21 @@ | ||
import React from 'react'; | ||
|
||
export const SideBarComponent = () => ( | ||
<> | ||
<ul> | ||
<li> | ||
<a href="#">Sessao side 1</a> | ||
</li> | ||
<li> | ||
<a href="#">Sessao side 2</a> | ||
</li> | ||
<li> | ||
<a href="#">Sessao side 3</a> | ||
</li> | ||
<li> | ||
<a href="#">Sessao side 4</a> | ||
</li> | ||
</ul> | ||
</> | ||
) | ||
|