feat(frontend/api): cast included with movie request and cast list on detail page

This commit is contained in:
sct
2020-09-17 06:35:25 +00:00
parent 6398e3645a
commit 04252f88bb
8 changed files with 235 additions and 11 deletions

View File

@@ -1,13 +1,11 @@
import React, { useState } from 'react';
import React from 'react';
import { NextPage } from 'next';
import PlexLoginButton from '../components/PlexLoginButton';
import PersonCard from '../components/PersonCard';
const PlexText: NextPage = () => {
const [authToken, setAuthToken] = useState<string>('');
return (
<div>
<PlexLoginButton onAuthToken={(authToken) => setAuthToken(authToken)} />
<div className="mt-4">Auth Token: {authToken}</div>
<PersonCard />
</div>
);
};