diff --git a/website/src/index.tsx b/website/src/index.tsx index 8ef9683e..8f1377d3 100644 --- a/website/src/index.tsx +++ b/website/src/index.tsx @@ -1,11 +1,11 @@ -import React from "react"; -import ReactDOM from "react-dom"; -import App from "./App"; -import "./index.css"; +import React from 'react'; +import ReactDOM from 'react-dom'; +import App from './App'; +import './index.css'; ReactDOM.render( , - document.getElementById("root") + document.getElementById('root'), ); diff --git a/website/src/react-app-env.d.ts b/website/src/react-app-env.d.ts index 925dd7ad..51fa39e9 100644 --- a/website/src/react-app-env.d.ts +++ b/website/src/react-app-env.d.ts @@ -1,11 +1,11 @@ /// -declare module "*.module.less" { +declare module '*.module.less' { const classes: { readonly [key: string]: string }; export default classes; } -declare module "*.md" { +declare module '*.md' { const src: string; export default src; }