Skip to content
Snippets Groups Projects
Commit f30d6674 authored by Aggarwal Himanshu's avatar Aggarwal Himanshu
Browse files

Add a placeholder skeleton

parent 6b4118da
No related branches found
No related tags found
No related merge requests found
import React from "react";
import classNames from "classnames";
function PlaceholderSkeleton({ className }) {
return (
<span
className={classNames(
`skeleton-box inline-block rounded-md ${className}`
)}
></span>
);
}
export default PlaceholderSkeleton;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment