Skip to content

nousantx/docs-v2

Repository files navigation

tenoxui/css documentation

About

Built with React, it's fast, really.

Clone repository

git clone https://github.com/nousantx/docs-v2

Run project

This project is using yarn as package manager.

Install dependencies :

yarn

Run development server :

yarn dev

More

Try tenoxui/css

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;