Package Exports
- @craftjs/layers
- @craftjs/layers/dist/cjs/index.js
- @craftjs/layers/dist/esm/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@craftjs/layers) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme

A Photoshop-like layers panel for your page editor.
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>
);
}