Skip to content

Commit be8da0e

Browse files
committed
Update support
1 parent 2fe739f commit be8da0e

File tree

1 file changed

+2
-2
lines changed
  • supports/create-react-app/src

1 file changed

+2
-2
lines changed

supports/create-react-app/src/App.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function App() {
3030
};
3131

3232
const handleJsonToCSV = () => {
33-
const jsonData = `[
33+
const jsonData = [
3434
{
3535
"Column 1": "1-1",
3636
"Column 2": "1-2",
@@ -55,7 +55,7 @@ function App() {
5555
"Column 3": 6,
5656
"Column 4": 7
5757
}
58-
]`;
58+
];
5959
const results = jsonToCSV(jsonData);
6060
console.log('---------------------------');
6161
console.log('Results:', results);

0 commit comments

Comments
 (0)