Fix example for import

Signed-off-by: Egor Savkin <es@m-labs.hk>
pull/113/head
Egor Savkin 2024-01-08 17:18:43 +08:00
parent e87c4a16a8
commit d8bad3d7b4
3 changed files with 30 additions and 25 deletions

File diff suppressed because one or more lines are too long

View File

@ -15,7 +15,6 @@ export function CrateWarnings({crate_index}) {
// #!render_count
console.log("CrateWarnings renders: ", renderCount)
// TODO UI/colors
return (
<div className="crate-info">
{crate_warnings.map((rule, index) => (

View File

@ -6,29 +6,35 @@ import {Validation} from "./validate";
// #!render_count
import {useRenderCount} from "@uidotdev/usehooks";
const JSONExample = JSON.stringify([
{
"items": [
{
"pn": "1124",
"options": null
},
{
"pn": "2118",
"options": null
},
{
"pn": "2118",
"options": null
},
{
"pn": "2128",
"options": null
}
],
"type": "rack"
}
]);
const JSONExample = JSON.stringify({
"crates": [
{
"items": [
{
"pn": "1124",
"options": null
},
{
"pn": "2128",
"options": null
},
{
"pn": "2128",
"options": null
},
{
"pn": "2128",
"options": null
}
],
"type": "rack"
},
{
"items": [],
"type": "no_crate"
}
]
});
export function ImportJSON() {
// #!render_count