You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

1 regel
782 B

  1. {"ast":null,"code":"var __jsx = React.createElement;\nimport React from \"react\"; // nodejs library to set properties for components\n\n// @material-ui/core components\nimport { makeStyles } from \"@material-ui/core/styles\"; // core components\n\nimport styles from \"assets/jss/nextjs-material-kit/components/typographyStyle.js\";\nconst useStyles = makeStyles(styles);\nexport default function Quote(props) {\n const {\n text,\n author\n } = props;\n const classes = useStyles();\n return __jsx(\"blockquote\", {\n className: classes.defaultFontStyle + \" \" + classes.quote\n }, __jsx(\"p\", {\n className: classes.quoteText\n }, text), __jsx(\"small\", {\n className: classes.quoteAuthor\n }, author));\n}","map":null,"metadata":{},"sourceType":"module"}