mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-20 04:39:20 +00:00
13 lines
256 B
JavaScript
13 lines
256 B
JavaScript
import React from "react";
|
|
import Typography from "@material-ui/core/Typography";
|
|
|
|
const Title = props => {
|
|
return (
|
|
<Typography component="h2" variant="h6" color="primary" gutterBottom>
|
|
{props.children}
|
|
</Typography>
|
|
);
|
|
};
|
|
|
|
export default Title;
|