Changed style of next page button

This commit is contained in:
Camerin Figueroa 2022-02-14 13:46:37 -05:00
parent 98873dd765
commit b8348d0705
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class GithubRepos extends React.Component {
<div className="repo-list">
{render}
{this.props.page < pages ?
<div className="button" onClick={()=>this.props.nextPage()}>Load More ({this.props.page}/{pages})</div>
<div className="btn" onClick={()=>this.props.nextPage()}>Load More ({this.props.page}/{pages})</div>
: ""
}
</div>