mirror of
https://github.com/ClaytonWWilson/CS307-Team24.git
synced 2025-12-16 18:28:47 +00:00
Fix mismatched parenthesis
This commit is contained in:
parent
c26ff21b20
commit
f0c4a2974f
@ -94,32 +94,33 @@ class Home extends Component {
|
|||||||
{postMarkup}
|
{postMarkup}
|
||||||
</Grid>
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
: loading ?
|
) : loading ?
|
||||||
<CircularProgress size={60} style={{marginTop: "300px"}}></CircularProgress>
|
(<CircularProgress size={60} style={{marginTop: "300px"}}></CircularProgress>)
|
||||||
:
|
:
|
||||||
<div>
|
(
|
||||||
<div>
|
<div>
|
||||||
<img src={logo} className="app-logo" alt="logo" />
|
<div>
|
||||||
<br/><br/>
|
<img src={logo} className="app-logo" alt="logo" />
|
||||||
<b>Welcome to Twistter!</b>
|
<br/><br/>
|
||||||
<br/><br/>
|
<b>Welcome to Twistter!</b>
|
||||||
<b>See the most interesting topics people are following right now.</b>
|
<br/><br/>
|
||||||
</div>
|
<b>See the most interesting topics people are following right now.</b>
|
||||||
|
</div>
|
||||||
|
|
||||||
<br/><br/><br/><br/>
|
<br/><br/><br/><br/>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<b>Join today or sign in if you already have an account.</b>
|
<b>Join today or sign in if you already have an account.</b>
|
||||||
<br/><br/>
|
<br/><br/>
|
||||||
<form action="./signup">
|
<form action="./signup">
|
||||||
<button className="authButtons signup">Sign up</button>
|
<button className="authButtons signup">Sign up</button>
|
||||||
</form>
|
</form>
|
||||||
<br/>
|
<br/>
|
||||||
<form action="./login">
|
<form action="./login">
|
||||||
<button className="authButtons login">Sign in</button>
|
<button className="authButtons login">Sign in</button>
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user