/* eslint-disable react-perf/jsx-no-new-object-as-prop */ import { PAPER_CLASSNAME, PRIMARY } from 'storybook-config/theme'; import '../index.css'; import { createElements, GraphProvider, Paper } from '@joint/react'; const initialElements = createElements([ { id: '1', x: 20, y: 25, width: 100, height: 50, type: 'standard.Ellipse', attrs: { body: { fill: PRIMARY, }, }, }, ]); function Main() { return (
); } export default function App() { return (
); }