moodist/src/components/buttons/buttons.tsx
2023-10-14 15:14:58 +03:30

13 lines
267 B
TypeScript

import { PlayButton } from './play';
import { UnselectButton } from './unselect';
import styles from './buttons.module.css';
export function Buttons() {
return (
<div className={styles.buttons}>
<PlayButton />
<UnselectButton />
</div>
);
}