How to use the storybook/constants/siteConstants.DESCRIPTION.C3JS_TEXT function in storybook

To help you get started, we’ve selected a few storybook examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github patternfly / patternfly-react / packages / patternfly-3 / patternfly-react / src / components / Chart / Stories / PieChartStory.js View on Github external
width: 251,
                height: 161
              }}
              data={pieChartRightConfigData}
              legend={pieChartRightConfigLegend}
            />
          
        
      );

      return inlineTemplate({
        title: 'Pie Charts',
        documentationLink: `${DOCUMENTATION_URL.PATTERNFLY_ORG_DATA_VISUALIZATION}pie-chart/`,
        description: (
          <span>
            {DESCRIPTION.C3JS_TEXT}
            <a href="{DESCRIPTION.C3JS_URL}">{DESCRIPTION.C3JS_URL}</a>
          </span>
        ),
        story
      });
    })
  );