* feat: added independent stickies page * chore: randomized sticky color * chore: search in stickies * feat: dnd * fix: quick links * fix: stickies abrupt rendering * fix: handled edge cases for dnd * fix: empty states * fix: build and lint * fix: handled new sticky when last sticky is emoty * fix: new sticky condition * refactor: stickies empty states, store * chore: update stickies empty states * fix: random sticky color * fix: header * refactor: better error handling --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
13 lines
362 B
TypeScript
13 lines
362 B
TypeScript
"use client";
|
|
|
|
import { AppHeader, ContentWrapper } from "@/components/core";
|
|
import { WorkspaceStickyHeader } from "./header";
|
|
|
|
export default function WorkspaceStickiesLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
<AppHeader header={<WorkspaceStickyHeader />} />
|
|
<ContentWrapper>{children}</ContentWrapper>
|
|
</>
|
|
);
|
|
}
|