0.1.0-beta.22 • Published 3 years ago

saltcorn-craft-layers-noeye v0.1.0-beta.22

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Usage

yarn add @craftjs/layers styled-components
import React from "react";
import {Editor} from "@craftjs/core"
import {Layers} from "@craftjs/layers"

export default function App() {
  return (
    <div style={{margin: "0 auto", width: "800px"}}>
      <Typography variant="h5" align="center">A super simple page editor</Typography>
      <Editor resolver={...}>
        <Layers />
      </Editor>
    </div>
  );
}