예제 #1
0
        private ReactElement GetOptionX(int index, string txt)
        {
            var optionX = DOM.Option(
                new OptionAttributes {
                Key = index, Value = txt
            },
                txt
                );

            return(optionX);
        }