Export animations - React

Hi,

I'm new to Bootstrap Studio, I have successfully created a new page for my site however I'm trying to export the whole code (HTML, CSS and Javascript) to VS code but I can't get it to work. For HTML and CSS I can just inspect the page on my browser to get the code however I'm also using a Carousel and several animations which require vanilla Javascript. not sure what's the best way to export all the required scripts so that everything works exactly like in my BS project. Can anybody help? I'm coding in React.

Thanks

When you use the program's export feature, everything is exported to your chosen folder... your HTML files and a folder called Assets, which contains all your CSS, your fonts, your images and any custom JS.

The animation library for the program's built-in animations is this one https://michalsnik.github.io/aos/ It is called via CDN and added to the the page's HTML if you have used any animations on it. You'll find this at the top of your code

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.1.1/aos.css">

And this at the bottom

<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.1.1/aos.js"></script>