File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
web-devtools/src/app/(main) Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 11"use client" ;
2- import React , { useState } from "react" ;
2+ import React from "react" ;
33import styled from "styled-components" ;
44
55import { DropdownCascader , Field } from "@kleros/ui-components-library" ;
@@ -31,8 +31,6 @@ const SettingsPane = styled.div`
3131` ;
3232
3333const Home : React . FC = ( ) => {
34- const [ selectedArbitrable , setSelectedArbitrable ] = useState < string | number > ( "" ) ;
35-
3634 return (
3735 < Container >
3836 < h1 > Ruler</ h1 >
@@ -42,8 +40,8 @@ const Home: React.FC = () => {
4240 < label > Select Arbitrable</ label >
4341 < DropdownCascader
4442 placeholder = { "Select Arbitrable" }
45- onSelect = { ( value ) => {
46- setSelectedArbitrable ( value ) ;
43+ onSelect = { ( ) => {
44+ //todo ;
4745 } }
4846 items = { SelectArbitrable }
4947 />
You can’t perform that action at this time.
0 commit comments