feat: install prettier to format code and add react-dev-inspector to locate code in the IDE faster (#44)

* feat: add react-dev-inspector to locate code in the IDE faster

* feat: install prettier to format code

---------

Co-authored-by: yangqianjuan <1072483500@qq.com>
This commit is contained in:
balibabu
2024-01-29 15:02:27 +08:00
committed by GitHub
parent 072f9dd5bc
commit e1bc1d46e6
9 changed files with 17191 additions and 16468 deletions

6
web/src/app.tsx Normal file
View File

@ -0,0 +1,6 @@
import React, { ReactNode } from "react";
import { Inspector } from "react-dev-inspector";
export function rootContainer(container: ReactNode) {
return React.createElement(Inspector, null, container);
}