mirror of
https://github.com/langgenius/dify.git
synced 2026-01-06 06:26:00 +00:00
11 lines
171 B
TypeScript
11 lines
171 B
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import React from 'react'
|
|
|
|
const Test: FC = () => {
|
|
return (
|
|
<div>Community</div>
|
|
)
|
|
}
|
|
export default React.memo(Test)
|