Co-authored-by: John Wang <[email protected]> Co-authored-by: Jyong <[email protected]> Co-authored-by: 金伟强 <[email protected]>
9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
import React from 'react'
|
|
import AppList from '@/app/components/explore/app-list'
|
|
|
|
const Apps = () => {
|
|
return <AppList />
|
|
}
|
|
|
|
export default React.memo(Apps)
|