Skip to content

tenoxui/tenoxui.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

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 --save-dev

or

yarn add tenoxui -D

App.jsx

import { useLayoutEffect } from "react";
import tenoxui from "tenoxui";

const App = () => {
  useLayoutEffect(() => {
    tenoxui();
  }, []);
  return <h1 className="tc-red">Hello World</h1>;
};

export default App;