Optimize code

This commit is contained in:
2024-01-14 00:51:03 +08:00
parent 97c23334f7
commit b0be3bc4a7
63 changed files with 217 additions and 275 deletions

View File

@@ -1,6 +1,6 @@
import React from 'react'
import { PropsWithChildren } from 'react'
const ItemList: React.FC<React.PropsWithChildren> = (props) => {
const ItemList = (props: PropsWithChildren) => {
return <ul>{props.children}</ul>
}