Skip to content

Commit

Permalink
chore: format code.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Feb 26, 2022
1 parent cf76cac commit 23f8bd7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions website/src/index.tsx
Original file line number Diff line number Diff line change
@@ -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(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById("root")
document.getElementById('root'),
);
4 changes: 2 additions & 2 deletions website/src/react-app-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/// <reference types="react-scripts" />

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;
}

0 comments on commit 23f8bd7

Please sign in to comment.