Created
September 10, 2019 01:33
-
-
Save alangpierce/09daca4aa7673b1b4e9c5cfa38ee7f55 to your computer and use it in GitHub Desktop.
This file contains 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 ActiveEnzymeJadeTemplate from 'toolbar/templates/activeenzyme.jade'; | |
import {makeJadeTransitionShim} from 'util/makeJadeTransitionShim'; | |
export interface ActiveEnzymeProps { | |
} | |
function ActiveEnzyme({}: ActiveEnzymeProps): JSX.Element { | |
return <span>TODO</span>; | |
} | |
export default makeJadeTransitionShim<ActiveEnzymeProps>(ActiveEnzymeJadeTemplate, ActiveEnzyme); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment