Commit cc3b7bbf authored by Théophile BORNON's avatar Théophile BORNON

remove console log

parent 5714809b
......@@ -45,14 +45,12 @@ function App() {
);
const generate = () => {
console.log(JSON.stringify(state))
let blob = new Blob([JSON.stringify(state)], { type: "application/json" });
saveAs(blob, "config.json");
}
const loadConfig = () => {
let config = JSON.parse(state.config)
console.log(config)
setState({ ...config })
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment