├── .github ├── FUNDING.yml └── workflows │ └── node.js.yml ├── .gitignore ├── .stackblitzrc ├── LICENSE ├── README.md ├── netflix-browse-pilet ├── LICENSE ├── package.json ├── pilet.json ├── src │ ├── components │ │ ├── Browse.tsx │ │ ├── Hero.tsx │ │ ├── HeroButton.tsx │ │ └── Showcase.tsx │ ├── data │ │ ├── hero.yml │ │ ├── hero.yml.d.ts │ │ ├── showcases.yml │ │ └── showcases.yml.d.ts │ ├── index.tsx │ ├── models │ │ ├── proptypes.ts │ │ └── types.ts │ └── style.scss ├── tsconfig.json └── webpack.config.js ├── netflix-favorites-pilet ├── LICENSE ├── package.json ├── pilet.json ├── src │ ├── components │ │ ├── Favorite.tsx │ │ ├── FavoriteToggle.tsx │ │ ├── Favorites.tsx │ │ └── Messages.tsx │ ├── index.tsx │ ├── models │ │ ├── proptypes.ts │ │ └── types.ts │ └── style.scss └── tsconfig.json ├── netflix-piral ├── LICENSE ├── README.md ├── package.json ├── src │ ├── components │ │ ├── App.tsx │ │ ├── Footer.tsx │ │ ├── Loading.tsx │ │ ├── Logo.tsx │ │ └── Navigation.tsx │ ├── index.html │ ├── index.tsx │ ├── layout.tsx │ ├── mocks │ │ └── backend.js │ ├── static │ │ ├── _redirects │ │ └── icons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon.ico │ │ │ ├── mstile-150x150.png │ │ │ └── site.webmanifest │ └── style.scss ├── tsconfig.json └── webpack.config.js ├── netflix-profile-pilet ├── LICENSE ├── package.json ├── pilet.json ├── src │ ├── components │ │ ├── Account.tsx │ │ ├── AccountSwitcher.tsx │ │ ├── LogoutButton.tsx │ │ ├── ProfileExtension.tsx │ │ ├── ProfilePage.tsx │ │ └── ProfilePicture.tsx │ ├── data │ │ ├── avatars.tsx │ │ ├── users.yml │ │ └── users.yml.d.ts │ ├── index.tsx │ ├── models │ │ ├── proptypes.ts │ │ └── types.ts │ └── scss │ │ ├── _avatars.scss │ │ └── style.scss ├── tsconfig.json └── webpack.config.js ├── netflix-search-pilet ├── LICENSE ├── package.json ├── pilet.json ├── src │ ├── components │ │ ├── Search.tsx │ │ ├── SearchExtension.tsx │ │ ├── SearchResults.tsx │ │ └── constants.ts │ ├── hooks │ │ └── useDismiss.ts │ ├── index.tsx │ ├── models │ │ ├── proptypes.ts │ │ └── types.ts │ ├── style.scss │ └── utils │ │ └── debounce.ts └── tsconfig.json ├── netflix-watch-pilet ├── LICENSE ├── package.json ├── pilet.json ├── src │ ├── components │ │ ├── MovieTile.tsx │ │ ├── Player.tsx │ │ └── WatchPage.tsx │ ├── index.tsx │ ├── models │ │ ├── proptypes.ts │ │ └── types.ts │ └── style.scss └── tsconfig.json └── package.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/.stackblitzrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/README.md -------------------------------------------------------------------------------- /netflix-browse-pilet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/LICENSE -------------------------------------------------------------------------------- /netflix-browse-pilet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/package.json -------------------------------------------------------------------------------- /netflix-browse-pilet/pilet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/pilet.json -------------------------------------------------------------------------------- /netflix-browse-pilet/src/components/Browse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/src/components/Browse.tsx -------------------------------------------------------------------------------- /netflix-browse-pilet/src/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/src/components/Hero.tsx -------------------------------------------------------------------------------- /netflix-browse-pilet/src/components/HeroButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/src/components/HeroButton.tsx -------------------------------------------------------------------------------- /netflix-browse-pilet/src/components/Showcase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/src/components/Showcase.tsx -------------------------------------------------------------------------------- /netflix-browse-pilet/src/data/hero.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/src/data/hero.yml -------------------------------------------------------------------------------- /netflix-browse-pilet/src/data/hero.yml.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/src/data/hero.yml.d.ts -------------------------------------------------------------------------------- /netflix-browse-pilet/src/data/showcases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/src/data/showcases.yml -------------------------------------------------------------------------------- /netflix-browse-pilet/src/data/showcases.yml.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/src/data/showcases.yml.d.ts -------------------------------------------------------------------------------- /netflix-browse-pilet/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/src/index.tsx -------------------------------------------------------------------------------- /netflix-browse-pilet/src/models/proptypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/src/models/proptypes.ts -------------------------------------------------------------------------------- /netflix-browse-pilet/src/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/src/models/types.ts -------------------------------------------------------------------------------- /netflix-browse-pilet/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/src/style.scss -------------------------------------------------------------------------------- /netflix-browse-pilet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/tsconfig.json -------------------------------------------------------------------------------- /netflix-browse-pilet/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-browse-pilet/webpack.config.js -------------------------------------------------------------------------------- /netflix-favorites-pilet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-favorites-pilet/LICENSE -------------------------------------------------------------------------------- /netflix-favorites-pilet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-favorites-pilet/package.json -------------------------------------------------------------------------------- /netflix-favorites-pilet/pilet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-favorites-pilet/pilet.json -------------------------------------------------------------------------------- /netflix-favorites-pilet/src/components/Favorite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-favorites-pilet/src/components/Favorite.tsx -------------------------------------------------------------------------------- /netflix-favorites-pilet/src/components/FavoriteToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-favorites-pilet/src/components/FavoriteToggle.tsx -------------------------------------------------------------------------------- /netflix-favorites-pilet/src/components/Favorites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-favorites-pilet/src/components/Favorites.tsx -------------------------------------------------------------------------------- /netflix-favorites-pilet/src/components/Messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-favorites-pilet/src/components/Messages.tsx -------------------------------------------------------------------------------- /netflix-favorites-pilet/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-favorites-pilet/src/index.tsx -------------------------------------------------------------------------------- /netflix-favorites-pilet/src/models/proptypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-favorites-pilet/src/models/proptypes.ts -------------------------------------------------------------------------------- /netflix-favorites-pilet/src/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-favorites-pilet/src/models/types.ts -------------------------------------------------------------------------------- /netflix-favorites-pilet/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-favorites-pilet/src/style.scss -------------------------------------------------------------------------------- /netflix-favorites-pilet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-favorites-pilet/tsconfig.json -------------------------------------------------------------------------------- /netflix-piral/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/LICENSE -------------------------------------------------------------------------------- /netflix-piral/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/README.md -------------------------------------------------------------------------------- /netflix-piral/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/package.json -------------------------------------------------------------------------------- /netflix-piral/src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/components/App.tsx -------------------------------------------------------------------------------- /netflix-piral/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/components/Footer.tsx -------------------------------------------------------------------------------- /netflix-piral/src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/components/Loading.tsx -------------------------------------------------------------------------------- /netflix-piral/src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/components/Logo.tsx -------------------------------------------------------------------------------- /netflix-piral/src/components/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/components/Navigation.tsx -------------------------------------------------------------------------------- /netflix-piral/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/index.html -------------------------------------------------------------------------------- /netflix-piral/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/index.tsx -------------------------------------------------------------------------------- /netflix-piral/src/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/layout.tsx -------------------------------------------------------------------------------- /netflix-piral/src/mocks/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/mocks/backend.js -------------------------------------------------------------------------------- /netflix-piral/src/static/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /netflix-piral/src/static/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/static/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /netflix-piral/src/static/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/static/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /netflix-piral/src/static/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/static/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /netflix-piral/src/static/icons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/static/icons/browserconfig.xml -------------------------------------------------------------------------------- /netflix-piral/src/static/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/static/icons/favicon.ico -------------------------------------------------------------------------------- /netflix-piral/src/static/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/static/icons/mstile-150x150.png -------------------------------------------------------------------------------- /netflix-piral/src/static/icons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/static/icons/site.webmanifest -------------------------------------------------------------------------------- /netflix-piral/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/src/style.scss -------------------------------------------------------------------------------- /netflix-piral/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/tsconfig.json -------------------------------------------------------------------------------- /netflix-piral/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-piral/webpack.config.js -------------------------------------------------------------------------------- /netflix-profile-pilet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/LICENSE -------------------------------------------------------------------------------- /netflix-profile-pilet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/package.json -------------------------------------------------------------------------------- /netflix-profile-pilet/pilet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/pilet.json -------------------------------------------------------------------------------- /netflix-profile-pilet/src/components/Account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/components/Account.tsx -------------------------------------------------------------------------------- /netflix-profile-pilet/src/components/AccountSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/components/AccountSwitcher.tsx -------------------------------------------------------------------------------- /netflix-profile-pilet/src/components/LogoutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/components/LogoutButton.tsx -------------------------------------------------------------------------------- /netflix-profile-pilet/src/components/ProfileExtension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/components/ProfileExtension.tsx -------------------------------------------------------------------------------- /netflix-profile-pilet/src/components/ProfilePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/components/ProfilePage.tsx -------------------------------------------------------------------------------- /netflix-profile-pilet/src/components/ProfilePicture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/components/ProfilePicture.tsx -------------------------------------------------------------------------------- /netflix-profile-pilet/src/data/avatars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/data/avatars.tsx -------------------------------------------------------------------------------- /netflix-profile-pilet/src/data/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/data/users.yml -------------------------------------------------------------------------------- /netflix-profile-pilet/src/data/users.yml.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/data/users.yml.d.ts -------------------------------------------------------------------------------- /netflix-profile-pilet/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/index.tsx -------------------------------------------------------------------------------- /netflix-profile-pilet/src/models/proptypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/models/proptypes.ts -------------------------------------------------------------------------------- /netflix-profile-pilet/src/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/models/types.ts -------------------------------------------------------------------------------- /netflix-profile-pilet/src/scss/_avatars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/scss/_avatars.scss -------------------------------------------------------------------------------- /netflix-profile-pilet/src/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/src/scss/style.scss -------------------------------------------------------------------------------- /netflix-profile-pilet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/tsconfig.json -------------------------------------------------------------------------------- /netflix-profile-pilet/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-profile-pilet/webpack.config.js -------------------------------------------------------------------------------- /netflix-search-pilet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-search-pilet/LICENSE -------------------------------------------------------------------------------- /netflix-search-pilet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-search-pilet/package.json -------------------------------------------------------------------------------- /netflix-search-pilet/pilet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-search-pilet/pilet.json -------------------------------------------------------------------------------- /netflix-search-pilet/src/components/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-search-pilet/src/components/Search.tsx -------------------------------------------------------------------------------- /netflix-search-pilet/src/components/SearchExtension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-search-pilet/src/components/SearchExtension.tsx -------------------------------------------------------------------------------- /netflix-search-pilet/src/components/SearchResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-search-pilet/src/components/SearchResults.tsx -------------------------------------------------------------------------------- /netflix-search-pilet/src/components/constants.ts: -------------------------------------------------------------------------------- 1 | export const apiKey = "87dfa1c669eea853da609d4968d294be"; 2 | -------------------------------------------------------------------------------- /netflix-search-pilet/src/hooks/useDismiss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-search-pilet/src/hooks/useDismiss.ts -------------------------------------------------------------------------------- /netflix-search-pilet/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-search-pilet/src/index.tsx -------------------------------------------------------------------------------- /netflix-search-pilet/src/models/proptypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-search-pilet/src/models/proptypes.ts -------------------------------------------------------------------------------- /netflix-search-pilet/src/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-search-pilet/src/models/types.ts -------------------------------------------------------------------------------- /netflix-search-pilet/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-search-pilet/src/style.scss -------------------------------------------------------------------------------- /netflix-search-pilet/src/utils/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-search-pilet/src/utils/debounce.ts -------------------------------------------------------------------------------- /netflix-search-pilet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-search-pilet/tsconfig.json -------------------------------------------------------------------------------- /netflix-watch-pilet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-watch-pilet/LICENSE -------------------------------------------------------------------------------- /netflix-watch-pilet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-watch-pilet/package.json -------------------------------------------------------------------------------- /netflix-watch-pilet/pilet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-watch-pilet/pilet.json -------------------------------------------------------------------------------- /netflix-watch-pilet/src/components/MovieTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-watch-pilet/src/components/MovieTile.tsx -------------------------------------------------------------------------------- /netflix-watch-pilet/src/components/Player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-watch-pilet/src/components/Player.tsx -------------------------------------------------------------------------------- /netflix-watch-pilet/src/components/WatchPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-watch-pilet/src/components/WatchPage.tsx -------------------------------------------------------------------------------- /netflix-watch-pilet/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-watch-pilet/src/index.tsx -------------------------------------------------------------------------------- /netflix-watch-pilet/src/models/proptypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-watch-pilet/src/models/proptypes.ts -------------------------------------------------------------------------------- /netflix-watch-pilet/src/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-watch-pilet/src/models/types.ts -------------------------------------------------------------------------------- /netflix-watch-pilet/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-watch-pilet/src/style.scss -------------------------------------------------------------------------------- /netflix-watch-pilet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/netflix-watch-pilet/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/netflix-demo/HEAD/package.json --------------------------------------------------------------------------------