blocks/multiplatform/choose-share/index.tsx (9 lines of code) (raw):
import { ChooseShareWhat } from './blocks/what';
import { ChooseShareWhere } from './blocks/where';
import styles from './choose-share.module.css';
export function ChooseShare() {
return (
<div className={styles.wrap}>
<ChooseShareWhat className={styles.what} />
<ChooseShareWhere className={styles.where} />
</div>
);
}