'use client' import type { FC } from 'react' import React from 'react' import s from './style.module.css' export interface ILoaidingAnimProps { type: 'text' | 'avatar' } const LoaidingAnim: FC = ({ type, }) => { return (
) } export default React.memo(LoaidingAnim)