Files
shuffle-cracked/frontend/src/components/PartnersArticles.jsx
T
2026-02-10 13:29:26 +01:00

22 lines
448 B
React

import { Box, Typography } from '@mui/material'
import React from 'react'
const PartnersArticles = (props) => {
const {tabName = "Partner's Articles"} = props;
return (
<Box
sx={{
display: "flex",
alignItems: "center",
justifyContent: "center",
width: "100%",
height: "100%",
minHeight: "500px",
}}
>
<Typography>{tabName}</Typography>
</Box>
)
}
export default PartnersArticles