Skip to content

Instantly share code, notes, and snippets.

@r3dm1ke
Last active February 21, 2020 16:07
Show Gist options
  • Select an option

  • Save r3dm1ke/938da23dd109ffdff0958ce5f5f26f9a to your computer and use it in GitHub Desktop.

Select an option

Save r3dm1ke/938da23dd109ffdff0958ce5f5f26f9a to your computer and use it in GitHub Desktop.
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