All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.buttons.StandardButton.StandardButton.jsx Maven / Gradle / Ivy

The newest version!
import React from 'react'
import { branch } from 'recompose'

import { SimpleButton } from '../Simple/Simple'

import { withLinkAction } from './withLinkAction'
import { withPerformAction } from './withPerformAction'

function StandardButton(props) {
    return 
}

export default branch(({ url }) => !!url, withLinkAction, withPerformAction)(StandardButton)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy