Added dependencies. Updated readme.

This commit is contained in:
Lucid Kobold
2022-04-08 11:43:48 -05:00
parent dc8aa5cd20
commit 1969cb7161
314 changed files with 4103 additions and 2986 deletions

View File

@@ -1,5 +1,5 @@
import Head from 'next/head'
import React, { Fragment } from 'react'
import Head from "next/head";
import React, { Fragment } from "react";
const IndexPage = (): JSX.Element => {
return (
@@ -9,13 +9,11 @@ const IndexPage = (): JSX.Element => {
</Head>
<Fragment>
<div>
<span>
Hello world!!
</span>
<span>Hello world!!</span>
</div>
</Fragment>
</div>
)
}
);
};
export default IndexPage;