import React from "react"; import { Meta, StoryObj } from "@storybook/react"; import { TitleBar } from "."; const meta: Meta = { component: TitleBar, render: ({ children, ...args }) => { return {children}; }, }; export default meta; type Story = StoryObj; export const Primary: Story = { args: { title: "Titlebar", }, };