mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 20:28:40 -05:00
* feat(frontend): title card desktop redesign * refactor(frontend): title card desktop - update status prop * fix(frontend): update props in search for titlecard
13 lines
232 B
TypeScript
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;
|