import React from 'react';
import { Illustration } from '../../Illustrations';
const getModuleAnimation = (
module:
| 'Token'
| 'NFT Marketplace'
| 'NFT Collection'
| 'Bundle'
| 'Lazy NFT'
| 'Pack'
| undefined,
) => {
switch (module) {
case 'Token':
return (
);
case 'NFT Marketplace':
return (
);
case 'NFT Collection':
return (
);
case 'Bundle':
return (
);
case 'Lazy NFT':
return (
);
case 'Pack':
return (
);
default:
return (
);
}
};
export default getModuleAnimation;