Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MykolaGolubyev/d24498a59593a3baf1b863a86ee352e0 to your computer and use it in GitHub Desktop.
Save MykolaGolubyev/d24498a59593a3baf1b863a86ee352e0 to your computer and use it in GitHub Desktop.
import * as React from 'react';
import { Registry, simpleAction } from 'react-component-viewer';
import { Button } from './Button';
const onClick = simpleAction('clicked');
export function buttonsDemo(registry: Registry) {
registry
.add('primary button', () => (
<Button label="click me" onClick={onClick}/>
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment