15 lines
183 B
Ruby
15 lines
183 B
Ruby
class SourceView
|
|
|
|
include React::Component
|
|
|
|
define_state :source
|
|
|
|
def render
|
|
div :class => :row do
|
|
"Virtual Machine Instruction".span
|
|
source
|
|
end
|
|
end
|
|
|
|
end
|