parent
a305b773ab
commit
d95e54cdce
1 changed files with 17 additions and 7 deletions
@ -1,9 +1,19 @@ |
||||
import React from 'react' |
||||
// import React from "react";
|
||||
|
||||
const SortableTree = () => { |
||||
return ( |
||||
<div>SortableTree</div> |
||||
) |
||||
} |
||||
// const data = {
|
||||
// id: "The Root",
|
||||
// children: [{ id: "Node A" }, { id: "Node B" }],
|
||||
// };
|
||||
|
||||
export default SortableTree |
||||
// const SortableTree = () => {
|
||||
// return <Tree data={data}>{Node}</Tree>;
|
||||
// };
|
||||
|
||||
// function Node({ ref, styles, data }) {
|
||||
// return (
|
||||
// <div ref={ref} style={styles.row}>
|
||||
// <div style={styles.indent}>{data.name}</div>
|
||||
// </div>
|
||||
// );
|
||||
// }
|
||||
// export default SortableTree;
|
||||
|
Loading…
Reference in new issue