@foqum/flowtag-render
v1.0.55
Published
Flowtag render
Downloads
107
Keywords
Readme
flowtag-render
Install
npm i @foqum/flowtag-renderInstall local dependency
Assuming both projects (flowtag_react, flowtag-render) are at the same height
micarpetadeproyectos>flowtag_react>
micarpetadeproyectos>flowtag-render>Link the dependency
micarpetadeproyectos>flowtag-render> npm i
micarpetadeproyectos>flowtag-render> npm linkuse the dependency link in flowtag_react
micarpetadeproyectos>flowtag_react> npm link flowtag-render
micarpetadeproyectos>flowtag_react> npm iUse the react library in both projects
micarpetadeproyectos>flowtag-render> npm link ../flowtag_react/node_modules/reactUsage
import React, { Component } from "react";
import { FlowtagRenderController } from "flowtag-render";
const App = () => {
return <div>{FlowtagRenderController()}</div>;
};