UNPKG

@erosnicolau/animated-text

Version:

Advanced React animated text component with comprehensive animation effects

6 lines (5 loc) 486 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; const DemoLayout = ({ children }) => { return (_jsxs("div", { className: "min-h-screen", children: [_jsx("header", { className: "p-4 border-b", children: _jsx("h1", { children: "AnimatedText Demo" }) }), _jsx("main", { className: "p-4", children: children }), _jsx("footer", { className: "p-4 border-t", children: _jsx("p", { children: "Powered by @erosnicolau/animated-text" }) })] })); }; export default DemoLayout;