Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 362 Bytes

sandpack.mdx

File metadata and controls

26 lines (20 loc) · 362 Bytes

import {NewBundlerToggle} from '../components/MDX/Sandpack/NewBundlerToggle';

New Sandpack bundler testing

function Text() {
  return <p>Lorem ipsum</p>;
}

export default function App() {
  return (
    <section>
      <h1>Test</h1>
      <Text />
      <Text />
      <Text />
    </section>
  );
}