mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
feat(frontend/api): cast included with movie request and cast list on detail page
This commit is contained in:
@@ -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>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user