source: src/components/animate/motion-lazy.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 383 bytes
Line 
1'use client';
2
3import { LazyMotion, m, domMax } from 'framer-motion';
4
5// ----------------------------------------------------------------------
6
7type Props = {
8 children: React.ReactNode;
9};
10
11export function MotionLazy({ children }: Props) {
12 return (
13 <LazyMotion strict features={domMax}>
14 <m.div style={{ height: '100%' }}> {children} </m.div>
15 </LazyMotion>
16 );
17}
Note: See TracBrowser for help on using the repository browser.