9 lines
163 B
TypeScript
Raw Normal View History

2023-05-25 16:59:47 +08:00
import AppList from "@/app/components/explore/app-list"
import React from 'react'
const Apps = ({ }) => {
return <AppList />
}
export default React.memo(Apps)