UNPKG

tymonial

Version:

A intuitive UI library which ease the process of collecting and viewing users feedbacks within yourt web applications.

21 lines (14 loc) 291 B
import { useEffect } from "react"; import "tymonial/lib/css/tymonial.css" function App() { useEffect(() => { // COMING SOON }, []) return ( <div className="App"> <h1>COMING SOON.</h1> <div className="example-cont"></div> </div> ); } export default App;