0.2.6 • Published 10 months ago

@rioe/components v0.2.6

Weekly downloads
-
License
-
Repository
-
Last release
10 months ago

Usage

yarn add @rioe/layers styled-components
import React from "react";
import {Editor} from "@rioe/core"
import {Layers} from "@rioe/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>
  );
}