1.37.0 • Published 12 months ago
@tableflow/react v1.37.0
The Open Source CSV Importer
Getting Started
1. Install the TableFlow React SDK
NPM
npm install @tableflow/react
Yarn
yarn add @tableflow/react
2. Add the Importer to your application
Create an importer, define your template, and retrieve data on TableFlow. \ The full SDK reference is available in our docs.
import { useState } from "react";
import { TableFlowImporter } from "@tableflow/react";
function MyComponent() {
const [isOpen, setIsOpen] = useState(false);
return (
<>
<button onClick={() => setIsOpen(true)}>Open TableFlow Importer</button>
<TableFlowImporter
importerId={"b0fadb1d-9888-4fcb-b185-21b984bcb227"} // Use your importer ID from https://app.tableflow.com/importers
modalIsOpen={isOpen}
modalOnCloseTriggered={() => setIsOpen(false)}
darkMode={true}
onComplete={(data) => console.log(data)}
/>
</>
);
}
\ Need help or have a feature request? Reach out to us over Slack!
1.36.0
12 months ago
1.37.0
12 months ago
1.35.0
1 year ago
1.34.0
1 year ago
1.33.0
1 year ago
1.32.0
2 years ago
1.15.0
2 years ago
1.14.0
2 years ago
1.10.3
2 years ago
1.12.0
2 years ago
1.10.2
2 years ago
1.19.0
2 years ago
1.18.0
2 years ago
1.17.0
2 years ago
1.16.0
2 years ago
1.9.0
2 years ago
1.8.0
2 years ago
1.21.0
2 years ago
1.22.0
2 years ago
1.20.0
2 years ago
1.25.0
2 years ago
1.26.0
2 years ago
1.23.0
2 years ago
1.24.0
2 years ago
1.29.0
2 years ago
1.27.0
2 years ago
1.28.0
2 years ago
1.11.0
2 years ago
1.10.1
2 years ago
1.10.0
2 years ago
1.30.0
2 years ago
1.31.0
2 years ago
1.7.0
2 years ago
1.6.0
2 years ago
1.5.0
2 years ago
1.4.0
2 years ago
1.3.0
2 years ago
1.2.0
2 years ago
1.1.0
2 years ago
1.0.0
2 years ago