0.0.0 • Published 1 year ago

react-ziko v0.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Overview

react-ziko is a tool designed for rendering ziko elements within a React application.

Install

  npm i react-ziko

Usage

import ZikoUI from "react-ziko";
import { text } from "ziko";
const ui = text("Hello World").style({
    color:"darkblue"
});
export default function App() {
  return (
    <main>
      <ZikoUI ui={ui.render(false)} />
    </main>
  );
}
0.0.0

1 year ago