File tree 2 files changed +16
-8
lines changed
2 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 1
- # react-multy-csv-viewer
1
+ # what is react-multy-csv-viewer??
2
+
2
3
React component to visualize csv file
3
4
4
- #Usage
5
- import {import { MultipleCsvViewer } from "react-multy-csv-viewer";
5
+ # installation
6
+
7
+ npm i react-multy-csv-viewer
8
+
9
+ # Usage
10
+
11
+ ```
12
+ import { MultipleCsvViewer } from "react-multy-csv-viewer";
6
13
7
14
<MultipleCsvViewer />
15
+ ```
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import babel from "rollup-plugin-babel";
2
2
import resolve from "@rollup/plugin-node-resolve" ;
3
3
import external from "rollup-plugin-peer-deps-external" ;
4
4
import { terser } from "rollup-plugin-terser" ;
5
- // import postcss from ' rollup-plugin-postcss' ;
5
+ import postcss from " rollup-plugin-postcss" ;
6
6
7
7
export default [
8
8
{
@@ -19,10 +19,10 @@ export default [
19
19
} ,
20
20
] ,
21
21
plugins : [
22
- // postcss({
23
- // plugins: [],
24
- // minimize: true,
25
- // }),
22
+ postcss ( {
23
+ plugins : [ ] ,
24
+ minimize : true ,
25
+ } ) ,
26
26
babel ( {
27
27
exclude : "node_modules/**" ,
28
28
presets : [ "@babel/preset-react" ] ,
You can’t perform that action at this time.
0 commit comments