Files
shuffle-cracked/frontend/src/components/PartnersArticles.jsx
T
2025-06-17 19:23:15 +02:00

22 lines
401 B
React

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