@protocraft/layers
v0.2.1-2
Published
A Photoshop-like layers panel for your page editor
Downloads
1,021
Maintainers
Readme
Usage
yarn add @protocraft/layers styled-components
import React from "react";
import {Editor} from "@protocraft/core"
import {Layers} from "@protocraft/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>
);
}