chagned pages file name to uppercase

This commit is contained in:
Kim, Jimin 2021-05-30 19:39:34 +09:00
parent 8263a76e41
commit 62fdce6ae5
6 changed files with 6 additions and 6 deletions

View file

@ -11,10 +11,10 @@ import Spinner from "./components/Spinner"
import Navbar from "./components/Navbar"
import Footer from "./components/Footer"
import PostList from "./pages/postList"
import Page from "./pages/page"
import NotFound from "./pages/notfound"
import Portfolio from "./pages/portfolio"
import PostList from "./pages/PostList"
import Page from "./pages/Page"
import NotFound from "./pages/NotFound"
import Portfolio from "./pages/Portfolio"
// Theme that will be used throughout the website
const GlobalStyle = createGlobalStyle<{ theme: { currentTheme: string } }>`

View file

@ -53,7 +53,7 @@ export default class Spinner extends React.Component<SpinnerProps> {
animation-timing-function: linear;
animation-iteration-count: infinite;
/* use for loops here? */
/* use a for loop here? */
&:nth-child(1) {
animation-delay: 200ms;
}

View file

@ -4,7 +4,7 @@ import { Helmet } from "react-helmet-async"
import pages from "../pages.json"
import NotFound from "./notfound"
import NotFound from "./NotFound"
export default class Page extends React.Component {
// eslint-disable-next-line @typescript-eslint/no-explicit-any