Uncodie
Technical DocumentationNo CodeTutorialsChangelogDisccord
Developers
Developers
  • 📖Documentation
    • Basic Concepts
      • Node JS
      • React
      • Postgres SQL
      • GraphQL
      • Git
      • API
  • 🔌API
    • Getting Started
      • Credentials
    • Users
      • Register User
    • Component Interface
      • Props
  • 🤖IDE
    • Getting started
    • Component View
      • CSS
      • Controller
      • Component
    • Compiler
    • Importing Code
      • Scripts
        • Manifest
      • Connectors
        • Manifest
      • Components
        • Manifest
    • Exporting Code
      • Design Systems
        • Custom React libraries
      • Guidelines
  • ⚙️Figma Plugin
    • Variables
      • Global Variables
      • Local Variables
      • Route Variables
      • Session Context
      • Window Variables
    • Actions
      • GraphQL Trigger
      • Refresh Query
      • Set Variable
      • Select and Navigate
  • 🎛️Settings
    • User Authentication
    • Git
    • External Deployment
    • Version Control
    • External DB Setup
    • SEO
Powered by GitBook
On this page

Was this helpful?

  1. API
  2. Component Interface

Props

Component general accesible props

General properties of components

Prop
Usage

state

Sets the initial value of the local state of a component that has local variables configured

children

Write about the children of a component

style

Adds inline style properties to the component

Properties and events can be obtained from each component from the component's propTypes. Example code

CaseTittle.propTypes = {
  style: PropTypes.any,
  CaseTittle0: PropTypes.any,
  CaseTittleOnClick: PropTypes.any,
  CaseTittleOnMouseEnter: PropTypes.any,
  CaseTittleOnMouseOver: PropTypes.any,
  CaseTittleOnKeyPress: PropTypes.any,
  CaseTittleOnMouseDown: PropTypes.any,
};
export default CaseTittle;
PreviousComponent InterfaceNextGetting started

Last updated 6 months ago

Was this helpful?

🔌