feat(plex/utils): added Plex OAuth class

This commit is contained in:
sct
2020-08-18 08:24:43 +00:00
parent 5adfdc1b05
commit 72f9624f1d
11 changed files with 342 additions and 25 deletions

12
src/pages/_app.tsx Normal file
View File

@@ -0,0 +1,12 @@
import React from 'react';
import '../styles/globals.css';
import App from 'next/app';
class CoreApp extends App {
public render(): JSX.Element {
const { Component, pageProps } = this.props;
return <Component {...pageProps} />;
}
}
export default CoreApp;