feat: add code style (#242)

This commit is contained in:
Joel
2023-05-29 17:49:01 +08:00
committed by GitHub
parent 408fb502a1
commit 091beffae7
7 changed files with 53 additions and 8 deletions

View File

@@ -7,9 +7,9 @@ export type IAppDetail = {
const AppDetail: FC<IAppDetail> = ({ children }) => {
return (
<>
{children}
</>
<>
{children}
</>
)
}