Using useLocation import * as React from 'react'; import { useLocation } from 'react-router-dom'; function App() { let location =… Read more
Vscode @ symbol has no tips
Using webpack aliases has no tips. Create a jsconfig.json file in the root of your project. The content like this… Read more
How to disable bounce scroll effect in IOS
Only works on ios 16+ overscroll-behavior: none; Refrence https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior
How to build a base React H5 project.
1. Initialization & Install Dependencies Initial the project > npm init Install base dependencies > npm i webpack webpack-cli webpack-dev-server… Read more