Skip to content

Commit 1773402

Browse files
committedAug 28, 2022
website: add backToUp button.
1 parent 59fe6ba commit 1773402

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed
 

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
"@types/react": "~18.0.9",
7676
"@types/react-dom": "~18.0.3",
7777
"@types/react-test-renderer": "~18.0.0",
78+
"@uiw/react-back-to-top": "^1.2.0",
7879
"@uiw/react-codesandbox": "~1.1.4",
7980
"@uiw/react-github-corners": "~1.5.3",
8081
"@uiw/react-shields": "~1.1.2",

‎website/App.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { useState } from 'react';
22
import GitHubCorners from '@uiw/react-github-corners';
33
import Github from '@uiw/react-shields/esm/github';
44
import Npm from '@uiw/react-shields/esm/npm';
5+
import BackToUp from '@uiw/react-back-to-top';
56
import '@wcj/dark-mode';
67
import logo from './logo.svg';
78
import './App.css';
@@ -14,6 +15,7 @@ const App = () => {
1415
const [value, setValue] = useState('');
1516
return (
1617
<div className="App">
18+
<BackToUp>Top</BackToUp>
1719
<dark-mode permanent light="Light" dark="Dark"></dark-mode>
1820
<GitHubCorners zIndex={9999} fixed target="__blank" href="https://github.com/uiwjs/react-markdown-preview" />
1921
<header className="App-header">

0 commit comments

Comments
 (0)
Please sign in to comment.