0.1.4 • Published 5 years ago
cartinese v0.1.4
tl;dr
- Install by executing
npm i cartineseoryarn add cartinese. - Import by adding
import Cartifer from 'cartinese'. - Use by adding
<Cartifer />.
Getting started
Compatibility
Your project needs to use React 16.3 or later.
Installation
Add cartinese to your project by executing npm install cartinese or yarn add cartinese.
Usage
Here's an example of basic usage:
import React from "react";
import Cartifer from "cartinese";
function MyApp() {
return (
<div>
<Cartifer />
</div>
);
}