/* eslint-disable react-perf/jsx-no-new-object-as-prop */ import { PAPER_CLASSNAME } 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: 100, type: 'standard.Image', attrs: { image: { xlinkHref: 'https://picsum.photos/100/100', }, }, }, ]); function Main() { return (
); } export default function App() { return (
); }