data-table-component-gif 0.0.4 → 0.0.5
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 +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,3 +26,11 @@ function App() {
|
|
|
26
26
|
return <DataTable data={data} columns={columns} itemsPerPage={5} />;
|
|
27
27
|
}
|
|
28
28
|
```
|
|
29
|
+
|
|
30
|
+
> **Style note**
|
|
31
|
+
>
|
|
32
|
+
> Styling is provided via a CSS file in the package. You can import it anywhere you use the `DataTable` component:
|
|
33
|
+
>
|
|
34
|
+
> ```js
|
|
35
|
+
> import "data-table-component-gif/dist/data-table-component-gif.css";
|
|
36
|
+
> ```
|