mirror of
https://github.com/RetroShare/RSNewWebUI.git
synced 2026-09-14 11:05:47 +05:00
10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
const m = require('mithril');
|
|
|
|
const Layout = () => {
|
|
return {
|
|
view: () => [m('.widget', [m('h2', 'Other Forums'), m('hr')])],
|
|
};
|
|
};
|
|
|
|
module.exports = Layout();
|