Created
July 25, 2016 13:17
-
-
Save zindel/a4cf852ee8c006f2ae1fec1848502d45 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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