mirror of
https://github.com/linsa-io/linsa.git
synced 2026-04-25 09:48:44 +02:00
* tasks * task input * community route * added thread and list for community QA * answers thread * journal sidebar section * journal calendar * fix: stuff * fix: stuff * fix: stuff * chore: disable comunitty toggle * fix: typo import header --------- Co-authored-by: marshennikovaolga <marshennikova@gmail.com> Co-authored-by: Aslam H <iupin5212@gmail.com>
6 lines
244 B
TypeScript
6 lines
244 B
TypeScript
import { CommunityTopicRoute } from "@/components/routes/community/CommunityTopicRoute"
|
|
|
|
export default function CommunityTopicPage({ params }: { params: { topicName: string } }) {
|
|
return <CommunityTopicRoute topicName={params.topicName} />
|
|
}
|