import React, { PropsWithChildren } from "react"; const SkeletonGlow = ({ children }: PropsWithChildren) => (
{children}
) export default SkeletonGlow;