UNPKG
corporate-frontend-mithril
Version:
latest (3.4.0)
3.4.0
3.3.0
3.2.0
Corporate frontend MithrilJS modules
corporate-frontend-mithril
/
src
/
components
/
splash-page
/
splash-page.js
12 lines
(10 loc)
•
312 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
spinner =
require
(
'./../../blocks/spinner/spinner'
);
module
.
exports
= {
view
:
function
(
) {
return
m
(
'.b-page.b-page--bg-dark.b-page--position-fixed'
, [
m
(
'.b-container.b-container--center.b-container--size-full'
, [
m
(spinner), ]), ]); }, };