trotl-table 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -15,22 +15,6 @@ yarn add trotl-table
15
15
 
16
16
 
17
17
  ⚡ Quick Start
18
- Wrap your app with the provider:
19
-
20
- import { StrictMode } from "react";
21
- import { createRoot } from "react-dom/client";
22
- import App from "./App";
23
- import { TableProvider } from "trotl-table";
24
-
25
- createRoot(document.getElementById("root")).render(
26
- <StrictMode>
27
- <TableProvider>
28
- <App />
29
- </TableProvider>
30
- </StrictMode>
31
- );
32
-
33
- Render a table:
34
18
 
35
19
  import React, { useState } from "react";
36
20
  import { Table } from "trotl-table";