feat(api): plex tv sync and recently added sync

This commit is contained in:
sct
2020-11-11 09:02:28 +00:00
parent 16221a46a7
commit 1390cc1f13
19 changed files with 554 additions and 76 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
import { NextPage } from 'next';
import UserProfile from '../../components/UserProfile';
const UserProfilePage: NextPage = () => {
return <UserProfile />;
};
export default UserProfilePage;