Skip to content
Snippets Groups Projects
Verified Commit 67116b98 authored by Rafael László's avatar Rafael László 💬
Browse files

Add no staff member found text

parent b6f42f66
No related branches found
No related tags found
2 merge requests!19fix type imports,!16About page
......@@ -9,7 +9,11 @@ import Page from './Page';
const Members: React.FC<{ data: StaffResponse }> = ({ data }) => {
if (data.length === 0) {
return <Typography>Nincs találat</Typography>;
return (
<Typography variant="h5" color="textPrimary">
Nincs találat!
</Typography>
);
}
return (
<>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment