Skip to main content

Internal Components

This directory contains reusable components that can be used throughout the SignalWire documentation.

Usage

To use these components in your documentation:

  1. Import the component from its source
  2. Use the component with the appropriate props
  3. Refer to the component's documentation page for detailed usage examples

For example:

import { Card } from "@site/src/components/Extras/Card";

<Card
title="My Card"
description="This is a card component"
/>

Contributing

When adding new components:

  1. Create the component in the appropriate directory
  2. Add comprehensive documentation
  3. Include usage examples
  4. Add the component to this directory page