Files
jellyseerr/src/components/TitleCard/Placeholder.tsx
Alex Zoitos b5e8428a39 New Titlecard Design - Desktop (#81)
* feat(frontend): title card desktop redesign

* refactor(frontend): title card desktop - update status prop

* fix(frontend): update props in search for titlecard
2020-09-14 12:16:57 +09:00

13 lines
232 B
TypeScript

import React from 'react';
const Placeholder: React.FC = () => {
return (
<div
style={{ width: 180, height: 270 }}
className="animate-pulse rounded-lg bg-cool-gray-700"
/>
);
};
export default Placeholder;