mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 08:54:13 +00:00
9 lines
178 B
TypeScript
9 lines
178 B
TypeScript
import { Item } from '../item';
|
|
|
|
interface ShareProps {
|
|
open: () => void;
|
|
}
|
|
|
|
export function Share({ open }: ShareProps) {
|
|
return <Item onClick={open}>Share Sounds</Item>;
|
|
}
|