Last active
February 21, 2020 16:07
-
-
Save r3dm1ke/938da23dd109ffdff0958ce5f5f26f9a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| import React from 'react'; | |
| import {Typography, makeStyles} from "@material-ui/core"; | |
| const useStyles = makeStyles({ | |
| noRepoNote: { | |
| marginTop: '1rem', | |
| textAlign: 'center', | |
| } | |
| }); | |
| const RepositoryList = ({searchTerm}) => { | |
| const classes = useStyles(); | |
| return ( | |
| <Typography | |
| variant={'overline'} | |
| className={classes.noRepoNote} | |
| component={'div'} | |
| > | |
| No repositories yet. | |
| </Typography> | |
| ); | |
| }; | |
| export default RepositoryList; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment