Animated Sections
Sections that animate in and out with smooth transitions.
Create sections with entrance and exit animations.
Usage
import { AnimatedSections } from "@delphi/ui";
export function Example() {
return (
<AnimatedSections>
<section>Section 1</section>
<section>Section 2</section>
</AnimatedSections>
);
}