Typography vs HTML tags
تبليغسؤال
I am ambiguous using between <Typography/> tag and normal HTML tags like <p>.
<Box className={someClassName}>
<Typography>{someVariableName}</Typography>
</Box>
or
<p className="someClassName">{someVariableName}</p>
both serve the purpose and yet mui typography is what mui has introduced and I've seen it being used in MUI apps.
my doubt is ...