Merge for 2.2.0 release
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
import { Box, Typography } from '@mui/material'
|
||||
import React from 'react'
|
||||
|
||||
const PartnersArticles = () => {
|
||||
const PartnersArticles = (props) => {
|
||||
const {tabName = "Partner's Articles"} = props;
|
||||
return (
|
||||
<Box
|
||||
sx={{
|
||||
@@ -13,9 +14,9 @@ const PartnersArticles = () => {
|
||||
minHeight: "500px",
|
||||
}}
|
||||
>
|
||||
<Typography>Partner Articles</Typography>
|
||||
<Typography>{tabName}</Typography>
|
||||
</Box>
|
||||
)
|
||||
}
|
||||
|
||||
export default PartnersArticles
|
||||
export default PartnersArticles
|
||||
Reference in New Issue
Block a user