mirror of
https://github.com/RetroShare/RSNewWebUI.git
synced 2026-09-13 18:45:49 +05:00
10 lines
167 B
JavaScript
10 lines
167 B
JavaScript
const m = require('mithril');
|
|
|
|
const Layout = () => {
|
|
return {
|
|
view: () => [m('.widget__heading', m('h3', 'Other Forums'))],
|
|
};
|
|
};
|
|
|
|
module.exports = Layout();
|