website: support dark theme.
parent
bced4043e8
commit
da7babf8d9
@ -0,0 +1 @@
|
||||
_
|
@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
. "$(dirname "$0")/_/husky.sh"
|
||||
|
||||
npx lint-staged
|
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,8 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import { createRoot } from 'react-dom/client';
|
||||
import App from './App';
|
||||
import '@uiw/reset.css';
|
||||
import './styles/reset.less';
|
||||
|
||||
ReactDOM.render(<App />, document.getElementById('root'));
|
||||
const container = document.getElementById('root');
|
||||
const root = createRoot(container);
|
||||
root.render(<App />);
|
||||
|
Loading…
Reference in New Issue