@metrostar/comet-extras
v1.4.2
Published
A set of custom components, intended to fill in the gaps where USWDS does not provide an implementation.
Downloads
888
Readme
Comet Extras
A set of custom components, intended to fill in the gaps where USWDS does not provide an implementation.
Getting Started
- Add Comet Extras to your project:
# npm
npm i --save @metrostar/comet-extras
# or yarn
yarn add @metrostar/comet-extras
- Add your first Comet Extras component:
import Tabs, { TabPanel } from '@metrostar/comet-extras';
<Tabs id="tabs">
<TabPanel id="tab-panel-1" label="Tab 1">
<p>Content of Tab 1</p>
</TabPanel>
</Tabs>;