1.1.0-alpha.4528.20221110152329 • Published 1 year ago

@jitsu/catalog v1.1.0-alpha.4528.20221110152329

Weekly downloads
-
License
-
Repository
github
Last release
1 year ago

@jitsu/catalog

This package contains the code that enables variety of features of Jitsu Sources, Destinations and API Keys.

At Jitsu we use it to power the Configurator front-end as well as to generate a part of the documentation at jitsu.com.

Usage

Just import the needed files from the catalog package.

import { allSources } from "./sources/lib"

//...

return (
  <Component>
    {allSources.map(source => <ListItem title={source.name} icon={source.icom}>)}
  </Component>
)