const widgets = require("widget");const panels = require("panel");exports.main = function(){ var map_widget = widgets.Widget({ id:"curry-map", label:"カレー地図", contentURL:"google地図のアイコン", panel: panels.Panel({ width:800, height:480, contentURL:"google地図のURL" }) }); var tweet_widget = widgets.Widget({ id:"curry-tweet", label:"カレーつぶやき", contentURL:"twitterのアイコン", panel: panels.Panel({ width:560, height:640, contentURL:"twitterの検索URL" }) });}