How to use the tubular-react-common/useTbList.useTbList function in tubular-react-common

To help you get started, we’ve selected a few tubular-react-common examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github unosquare / tubular-react / sample / src / TbListExample.tsx View on Github external
const TbListExample: React.FunctionComponent = () => {
  const [data, setData] = React.useState(localData);
  const tbList = useTbList(
    columns,
    'https://tubular.azurewebsites.net/api/orders/paged',
  );

  const rowClick = (row: any) => {
    console.log('You clicked on a row: ', row);
  };

  const handleAddRow = () => {
    setData([...data, {
      Amount: 150.00,
      CustomerName: 'Tiempo Development',
      OrderID: 23,
      ShippedDate: '2016-01-04T18:00:00',
      ShipperCity: 'Monterrey, NL, Mexico',
    }]);

tubular-react-common

Unosquare Tubular React Common

MIT
Latest version published 6 months ago

Package Health Score

65 / 100
Full package analysis

Similar packages