import React from 'react' import type { Meta } from '@storybook/react' import { createCsx } from '../index' import { theme } from '../theme' import { generateVars } from '../createTheme' export default { title: 'admin-ui-core/core', } as Meta // join the parser w/ emotion.css const csx = createCsx(theme) export function FrameworkdAgnostic() { return (
Framework Agnostic Box
) } export const Utils = () => { return (
Utils
) } export const Vars = () => { return ( ) }