mirror of
https://github.com/zadam/trilium.git
synced 2026-03-17 01:20:30 +01:00
10 lines
236 B
TypeScript
10 lines
236 B
TypeScript
import { ComponentChildren } from "preact";
|
|
|
|
interface NoteContentSwitcherProps {
|
|
children: ComponentChildren;
|
|
}
|
|
|
|
export default function NoteContentSwitcher({ children }: NoteContentSwitcherProps) {
|
|
return <p>{children}</p>;
|
|
}
|