diff --git a/components/kat-rezo-nou.js b/components/kat-rezo-nou.js new file mode 100644 index 0000000..f4e3095 --- /dev/null +++ b/components/kat-rezo-nou.js @@ -0,0 +1,35 @@ +import PropTypes from 'prop-types' +import Box from '@mui/material/Box' +import Card from '@mui/material/Card' +import CardContent from '@mui/material/CardContent' +import {CardActionArea} from '@mui/material' +import Typography from '@mui/material/Typography' + +export default function KatRezoNou({tit, soutit, ko, lyen}) { + return ( + + + window.open(lyen, '_blank')}> + + + {tit} + + + {soutit} + + + {ko} + + + + + + ) +} + +KatRezoNou.propTypes = { + tit: PropTypes.string.isRequired, + soutit: PropTypes.string.isRequired, + ko: PropTypes.string.isRequired, + lyen: PropTypes.string.isRequired +}