update 风机信息

This commit is contained in:
lb
2023-11-03 16:26:07 +08:00
parent 21070337c5
commit ec07109c2e
6 changed files with 175 additions and 18 deletions

View File

@@ -0,0 +1,25 @@
import React from 'react';
import FanInfo from '../../../公共组件/风机信息';
import { motion } from 'framer-motion';
import cls from './index.module.less';
export default function index() {
return (
<motion.div
style={{
width: '625px',
height: '966px',
// background: '#fff3',
}}
initial={{ opacity: 0, position: 'absolute' }}
animate={{ opacity: 1, position: 'relative' }}
exit={{ opacity: 0, position: 'absolute' }}
transition={{ type: 'tween' }}
>
<div style={{ height: '380px' }}>
<FanInfo />
</div>
</motion.div>
);
}