Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

cf-component-callout

cf-ci-write120BSD-3-Clausedeprecated6.0.0

This package has been deprecated. Please find this package under its new name @cloudflare/component-callout.

Cloudflare Callout Component

readme

cf-component-callout

Cloudflare Callout Component

Installation

Installation with yarn is recommended


$ yarn add cf-component-callout

Usage

import React from 'react';
import { Callout } from 'cf-component-callout';

const CalloutComponent = () => (
  <Callout title="Callout Title" content="Callout content." />
);

export default CalloutComponent;