mirror of
https://github.com/remvze/moodist.git
synced 2025-12-18 17:34:17 +00:00
13 lines
267 B
TypeScript
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>
|
|
);
|
|
}
|