22 lines
401 B
React
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
|