moodist/src/components/menu/items/share.tsx
2024-01-02 22:20:59 +03:30

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>;
}