importtype{ ReactElement }from"react";import{ Divider }from"@react-md/divider";import{ Typography }from"@react-md/typography";import styles from"./SimpleExample.module.scss";exportdefaultfunctionDemo(): ReactElement {return(<divclassName={styles.container}><Typography>
This is a new surface and defining some new theme colors.
</Typography><TypographyclassName={styles.defaultPrimary}type="subtitle-1">
This is the pre-compiled primary color.
</Typography><TypographyclassName={styles.defaultSecondary}type="subtitle-1">
This is the pre-compiled secondary color.
</Typography><Divider/><TypographyclassName={styles.themePrimary}type="subtitle-1">
This is the new primary color.
</Typography><TypographyclassName={styles.themeSecondary}type="subtitle-1">
This is the new secondary color.
</Typography></div>);}