// Copyright DWJ 2024. // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt import { UnstyledList, viewStyles } from "@dwidge/components-rnw"; import assert from "assert"; import { useState } from "react"; import { SchemaApi } from "../hooks/SchemaApi"; import { SchemaView } from "./SchemaView"; export const SchemaListView = ({ elements = SchemaApi.useGetList(), selection: [selection, setSelection] = useState([]), }) => ( (assert(item.id), item.id)} selection={[selection, setSelection]} render={(item) => } selectStyle={viewStyles.select} style={viewStyles.unselect} /> );