GrapesJS Starter

by artur_arseniev

HTML

<script src="https://unpkg.com/grapesjs"></script>
<link rel="stylesheet" href="https://unpkg.com/grapesjs/dist/css/grapes.min.css">
<script src="https://unpkg.com/grapesjs-blocks-basic"></script>
<div id="gjs">
  <h1 style="padding: 40px; margin: 30px;">
  hello
  </h1>
  <h2 style="margin: 20px 30px 50px 10px">
  hi
  </h2>
</div>

CSS

body, html {
  margin: 0;
  height: 100%;
}

iframe body{
  zoom: 0.7;
}

Babel + JSX

const editor = grapesjs.init({
	container: '#gjs',
  fromElement: 1,
  height: '100%',
  storageManager: { type: 0 },
  plugins: ['gjs-blocks-basic'],
  showOffsets: true,
  showOffsetsSelected: true,
});