cartinese
v0.1.4
Published
- Install by executing `npm i cartinese` or `yarn add cartinese`. - Import by adding `import Cartifer from 'cartinese'`. - Use by adding `<Cartifer />`.
Downloads
4
Readme
tl;dr
- Install by executing
npm i cartinese
oryarn 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>
);
}