13 lines
141 B
Ruby
13 lines
141 B
Ruby
|
class FileView < ElementView
|
||
|
|
||
|
|
||
|
def draw
|
||
|
DOM do |dom|
|
||
|
dom.div.file_view do
|
||
|
dom.h4 {"Future"}
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|