|  | @@ -5,6 +5,7 @@ import styles from './index.less'
 | 
	
		
			
				|  |  |  type AnimateContentProps = {
 | 
	
		
			
				|  |  |    visible: boolean
 | 
	
		
			
				|  |  |    onVisibleChange: (visible: boolean) => void
 | 
	
		
			
				|  |  | +  disableBreadcrumb?: boolean
 | 
	
		
			
				|  |  |  } & Omit<DrawerProps, 'visible' | 'onVisibleChange'>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  const AnimateContent: FC<PropsWithChildren<AnimateContentProps>> = ({
 | 
	
	
		
			
				|  | @@ -14,7 +15,6 @@ const AnimateContent: FC<PropsWithChildren<AnimateContentProps>> = ({
 | 
	
		
			
				|  |  |    children,
 | 
	
		
			
				|  |  |    ...others
 | 
	
		
			
				|  |  |  }) => {
 | 
	
		
			
				|  |  | -  if (!visible) return null
 | 
	
		
			
				|  |  |    return (
 | 
	
		
			
				|  |  |      <div className={styles.pageContainer}>
 | 
	
		
			
				|  |  |        <Drawer
 |