Form Customizing Select Options
src / Demo.tsx
1234567891011121314151617181920212223242526import React, { ReactElement } from "react";
import { Text } from "@react-md/typography";
import UsingKeys from "./UsingKeys";
import CustomChildren from "./CustomChildren";
import WithOptionLeftAddon from "./WithOptionLeftAddon";
import styles from "./CustomizingSelectOptions.module.scss";
export default function Demo(): ReactElement {
return (
<div className={styles.container}>
<Text type="headline-6" margin="none">
Using Keys
</Text>
<UsingKeys />
<Text type="headline-6" margin="top">
Custom Children
</Text>
<CustomChildren />
<Text type="headline-6" margin="top">
Icons and Avatars
</Text>
<WithOptionLeftAddon />
</div>
);
}