Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 537 Bytes

File metadata and controls

23 lines (20 loc) · 537 Bytes
id components
title Components
sidebar_label Components

The following convention should be followed for components naming:

  • PascalCase should be used to name the component file.
  • Name of the component should match the filename
    • It should be understandable by everyone (no **EntityForListItem)
    • it should be simple to use (no SimpleBeanFactoryAwareAspectInstanceFactory)

    ``` const SumbitButton = (props: SubmitButtonProps) => { return (
    ....
    ) } ```