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

components.widgets.Form.fields.FieldAlignmentBlock.tsx Maven / Gradle / Ivy

The newest version!
import React from 'react'

type fieldAlignmentBlockType = {
    visible?: boolean
}

export function FieldAlignmentBlock({ visible = true }: fieldAlignmentBlockType) {
    if (!visible) {
        return null
    }

    return 
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy