@reasoningco/infer-react
v0.1.6
Published
React hooks and components for the Infer SDK
Readme
@reasoningco/infer-react
React hooks and components for the Infer SDK — QueryBar, AutoChart, ResultsTable, and more.
Install
npm install @reasoningco/infer-react @reasoningco/infer reactUsage
import { InferProvider, useInferQuery, AutoChart, ResultsTable, QueryBar } from '@reasoningco/infer-react';
function Dashboard() {
const { status, result, handleSubmit, getInputProps } = useInferQuery();
return (
<div>
<QueryBar onSubmit={handleSubmit} inputProps={getInputProps()} />
{result && <AutoChart result={result} />}
{result && <ResultsTable result={result} />}
</div>
);
}License
MIT — see LICENSE
