main
Last change
on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
383 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | 'use client';
|
---|
| 2 |
|
---|
| 3 | import { LazyMotion, m, domMax } from 'framer-motion';
|
---|
| 4 |
|
---|
| 5 | // ----------------------------------------------------------------------
|
---|
| 6 |
|
---|
| 7 | type Props = {
|
---|
| 8 | children: React.ReactNode;
|
---|
| 9 | };
|
---|
| 10 |
|
---|
| 11 | export 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.