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

13
src/pages/index.tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
import { NextPage } from 'next';
const Index: NextPage = () => {
return (
<div className="bg-blue-700 mx-4 my-2 px-4 py-2 w-64">
<h1 className="text-xl">Overseer</h1>
<p className="py-4">Here is some text</p>
</div>
);
};
export default Index;