aboutsummaryrefslogtreecommitdiffstats
path: root/ui/src/pages/Runbooks.tsx
blob: 4237e065f6bfaf538165518ffc47b0056f1db92a (plain) (blame)
1
2
3
4
5
6
7
8
9
import Editor from "@/components/runbooks/editor/Editor";

export default function Runbooks() {
  return (
    <div className="w-full flex-1 flex-col p-4">
      <Editor />
    </div>
  );
}