import { JSX } from "solid-js/jsx-runtime";
import { Show, useContext } from "solid-js";
import { lfmContext } from "../SolidLastFMViewer";
interface Props {
children: JSX.Element | "";
fallback: JSX.Element | "";
class: string;
}
const LoadingSkeleton = (props: Props) => {
const context = useContext(lfmContext);
return (
<>