Skip to content
This repository has been archived by the owner on Feb 24, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (13 loc) · 946 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 946 Bytes

Overview

This package contains a set of react components that build a default theme for developer portal.

Contributing

Once a new component is created, please, make sure to assign data-component-name attribute to it. Please check these examples: regular component, styled component. The value of data-component-name attribute should follow the hierarchical structure of the files inside a theme, for example for FooterColumn.tsx in the following structure the data-component-name will be "Footer/FooterColumn":

├── ...
├── Footer
│   ├── FooterColumn.tsx
|   ├── FooterCopyright.tsx
│   └── ...
└── ...