* chore: issue entity data type updated * chore: HomePeekOverviewsRoot component added * chore: recent work item improvement and code refactor
9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
"use client";
|
|
|
|
import { IssuePeekOverview } from "@/components/issues";
|
|
|
|
export const HomePeekOverviewsRoot = () => (
|
|
<>
|
|
<IssuePeekOverview />
|
|
</>
|
|
);
|