Built with React, it's fast, really.
git clone https://github.com/nousantx/docs-v2
This project is using yarn as package manager.
Install dependencies :
yarn
Run development server :
yarn dev
Add tenoxui to your project
npm install tenoxui @tenoxui/property --save-dev
or
yarn add tenoxui @tenoxui/property -D
App.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;