Skip to content

nousantx/docs-v2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3286ef8 · May 18, 2024

History

68 Commits
Apr 24, 2024
May 18, 2024
Apr 24, 2024
Apr 27, 2024
May 11, 2024
Apr 28, 2024
May 11, 2024
Apr 24, 2024
Apr 24, 2024
Apr 24, 2024
Apr 28, 2024
May 11, 2024

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;