Skip to content

Instantly share code, notes, and snippets.

@zindel
Created July 25, 2016 13:17
Show Gist options
  • Save zindel/a4cf852ee8c006f2ae1fec1848502d45 to your computer and use it in GitHub Desktop.
Save zindel/a4cf852ee8c006f2ae1fec1848502d45 to your computer and use it in GitHub Desktop.
import React from 'react';
import {autobind, emptyFunction} from 'rex-widget/lang';
import PickTableWizard from './PickTableWizard';
const tables = [
{id: 'individual', title: 'individual'},
{id: 'study', title: 'study'},
];
export default class DBGUI extends React.Component {
render() {
console.log(PickTableWizard);
return (
<PickTableWizard
title="Pick Table"
onClose={emptyFunction}
tables={tables}
actionState={{}}
setActionState={emptyFunction}
onContext={emptyFunction}
/>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment