Skip to content

Instantly share code, notes, and snippets.

@adamfratino
adamfratino / BasicContentExample.tsx
Last active August 16, 2022 17:04
Toast Examples
import { Toast } from '@pelotoncycle/design-system';
import { Button } from './Button';
const Component: React.FC = () => (
<Toast Trigger={Button} content="I'm the text in the Toast!" />
);