add js and ts lints

This commit is contained in:
João Geonizeli
2021-08-04 16:16:10 -03:00
parent 8d089c0b7a
commit d623b653b2
20 changed files with 1129 additions and 108 deletions

View File

@@ -1,9 +1,11 @@
import React, { FC } from 'react'
import { Container } from '../../components/Container'
import { Header } from '../../components/Header'
import { Navbar } from '../../components/Navbar'
import { PoolListing } from '../../components/PoolListing'
import { SideNav } from '../../components/SideNav'
import type { FC } from "react";
import React from "react";
import { Container } from "../../components/Container";
import { Header } from "../../components/Header";
import { Navbar } from "../../components/Navbar";
import { PoolListing } from "../../components/PoolListing";
import { SideNav } from "../../components/SideNav";
export const Home: FC = () => {
return (
@@ -26,5 +28,5 @@ export const Home: FC = () => {
</div>
</div>
</>
)
}
);
};