react-gsap Docs
Introduction
Components
Plugins
Instructions

GSAP Plugins

There are some Core Plugins that are already included in GSAP: https://greensock.com/docs/v3/GSAP/CorePlugins

And there are some free Plugins that you can use to extend the functionality. Here is the list: https://greensock.com/docs/v3/Plugins.

To use them with react-gsap you first have to register them.

Register the TextPlugin for example:

import { gsap } from 'gsap';
import { TextPlugin } from 'gsap/TextPlugin';
# if your build step doesn't transpile inside node_modules you can try this import:
import { TextPlugin } from 'gsap/dist/TextPlugin';
gsap.registerPlugin(TextPlugin);

And use it:

This is a text.