0.1.13 • Published 4 months ago

int2_support_ui v0.1.13

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Support UI


React library for Intellectus data team

Warning

This library is continuously being developed and maintained.🛠️🛠️🛠️

Installation

using npm:

$ npm install int2_support_ui

Usage

import SupportUI from "int2_support_ui";

const TestComponent = () => {
  return <SupportUI.SearchInput />
}

const TestThroughput = () => {
  const [inputData, setInputData] = useState<NodeDataType>([]);

  const inputDataChangeInterval = () => {
    setInterval(async() => {
      const data = await getData(); // replace to your GET api or something
      setInputData(data);
      setCount(cur => (cur + 1) % 60)
    }, 1000);
  };

  useEffect(() => inputDataChangeInterval(), []);

  return (
    <SupportUI.Throughput 
        maxLength={5}
        inputData={inputData}
        graphWidth={500}
        graphHeight={50}
    />
  )
}

Contributing

See the Contributing Guide for more details on contributing.

Roadmap

See the Roadmap for more details on roadmap.

0.1.10

4 months ago

0.1.11

4 months ago

0.1.12

4 months ago

0.1.13

4 months ago

0.1.9

4 months ago

0.1.8

10 months ago

0.1.7

10 months ago

0.1.6

10 months ago

0.1.5

10 months ago

0.1.4

10 months ago

0.1.3

10 months ago

0.1.2

10 months ago

0.1.1

10 months ago

0.1.0

10 months ago