import React from "react"; import { Meta, StoryObj } from "@storybook/react-webpack5"; import { Wrapper } from "./Wrapper"; import { Button } from "../../tremor/Button"; const meta: Meta = { component: Wrapper, title: "Layouts/Wrapper", argTypes: {}, }; export default meta; type Story = StoryObj; export const Primary: Story = { render: (args) => ( <> ), args: { token: "eyJhbGciOiJIUzI1NiJ9.eyJyb2xlIjoiYXV0aGVudGljYXRlZCIsImFwcF9tZXRhZGF0YSI6eyJkYXNoYm9hcmRzIjpbImFlNWIxZGRlLTFmZjUtNDk2Ny1hZmUxLTYzOWI3NTVjNzEwMiJdLCJwYXJlbnRfdGVhbSI6ImVlNWIwOGM2LTUxNjctNDQyNS1iYmMzLWE3NDZmZTRhN2VhZCJ9LCJzdWIiOiI1ODk5Zjk5ZC1hNDQ5LTRiZmEtODc2OS0xOWMwOTdhYWYxZjYiLCJhdWQiOiJhdXRoZW50aWNhdGVkIiwiaWF0IjoxNzE5MzA3MDgxfQ.230JQNigbv9HOSXms9m-JGKlpGveuD3-_bR3XdqRhEk", baseUrl: "http://localhost:3004", }, };