Getting rid of the container
This commit is contained in:
parent
39f46548a5
commit
fb95c93ba0
1 changed files with 2 additions and 3 deletions
|
@ -11,8 +11,8 @@ function App() {
|
||||||
return (
|
return (
|
||||||
<div className="App">
|
<div className="App">
|
||||||
<h1 id="title">{data.title}</h1>
|
<h1 id="title">{data.title}</h1>
|
||||||
<div id="container">
|
|
||||||
<ButtonGroup vertical>
|
<ButtonGroup vertical id="container">
|
||||||
{data.links.map((rootDetail, index)=>{
|
{data.links.map((rootDetail, index)=>{
|
||||||
if(rootDetail.type === "facebook") {
|
if(rootDetail.type === "facebook") {
|
||||||
res = <Button id="facebook" variant="primary" href={rootDetail.url}><Facebook/> {rootDetail.text}</Button>
|
res = <Button id="facebook" variant="primary" href={rootDetail.url}><Facebook/> {rootDetail.text}</Button>
|
||||||
|
@ -51,7 +51,6 @@ function App() {
|
||||||
})}
|
})}
|
||||||
</ButtonGroup>
|
</ButtonGroup>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue