-
-
Notifications
You must be signed in to change notification settings - Fork 521
Expand file tree
/
Copy pathwidgets.js
More file actions
31 lines (27 loc) · 743 Bytes
/
widgets.js
File metadata and controls
31 lines (27 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { lazy } from 'preact-iso';
import Jumbotron from './jumbotron';
import GithubRepos from './github-repos';
import TodoList from './todo-list';
import Logo from './logo';
import Toc from './table-of-contents';
import Sponsors from './sponsors';
import TabGroup from './tab-group';
// Hoist the CSS to avoid FOUC
import './branding/style.module.css';
import './blog-overview/style.module.css';
import './we-are-using/style.module.css';
const Branding = lazy(() => import('./branding'));
const BlogOverview = lazy(() => import('./blog-overview'));
const WeAreUsing = lazy(() => import('./we-are-using'));
export default {
Toc,
BlogOverview,
Jumbotron,
GithubRepos,
TodoList,
Sponsors,
Logo,
WeAreUsing,
Branding,
TabGroup
};