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