Skip to main content

RTD Intro

Let's discover React Text Decorator in less than 5 minutes.

Getting Started

Get Started by Installing the library in your project

npm install @christian-caracach/react-text-decorator

or

yarn add @christian-caracach/react-text-decorator

Import a RTD decorator

Start by importing a component:

import { StripeText } from "@christian-caracach/react-text-decorator";

And just use it in your Layout

const YourComponent = () => {
return <StripeText text="Your Test" />;
};

And that's it.

Now, let's see what other features RTD support...