feat(frontend): discover tv/movies full page

Also adds ListView component for infinite scrolling pages
This commit is contained in:
sct
2020-09-17 03:10:00 +00:00
parent 31809d952c
commit be0003a85d
10 changed files with 260 additions and 77 deletions

View File

@@ -2,10 +2,9 @@ import React from 'react';
const Placeholder: React.FC = () => {
return (
<div
style={{ width: 180, height: 270 }}
className="animate-pulse rounded-lg bg-cool-gray-700"
/>
<div className="relative animate-pulse rounded-lg bg-cool-gray-700 w-36 sm:w-36 md:w-44 ">
<div className="w-full" style={{ paddingBottom: '150%' }} />
</div>
);
};