Built with React, it's fast, really.
git clone https://github.com/nousantx/docs-v2This project is using yarn as package manager.
Install dependencies :
yarnRun development server :
yarn devAdd tenoxui to your project
npm install tenoxui @tenoxui/property --save-devor
yarn add tenoxui @tenoxui/property -DApp.jsx
import { useLayoutEffect } from "react"; import tenoxui from "tenoxui"; import property from "@tenoxui/property"; const App = () => { useLayoutEffect(() => { tenoxui(property); }, []); return <h1 className="tc-red">Hello World</h1>; }; export default App;