2019-01-04 13:14:53 -05:00
|
|
|
import categories from "./categories";
|
2019-01-04 13:36:40 -05:00
|
|
|
import copy from "./copy";
|
2019-01-04 13:14:53 -05:00
|
|
|
import css from "./css";
|
2019-09-17 15:30:47 -04:00
|
|
|
import errors from "./errors";
|
2019-01-04 13:14:53 -05:00
|
|
|
import homepage from "./homepage";
|
|
|
|
import posts from "./posts";
|
|
|
|
import rss from "./rss";
|
|
|
|
import tutorials from "./tutorials";
|
2020-01-27 19:31:59 -05:00
|
|
|
import years from "./years";
|
2019-01-04 13:14:53 -05:00
|
|
|
|
|
|
|
export = {
|
|
|
|
categories,
|
2019-01-04 13:36:40 -05:00
|
|
|
copy,
|
2019-01-04 13:14:53 -05:00
|
|
|
css,
|
2019-09-17 15:30:47 -04:00
|
|
|
errors,
|
2019-01-04 13:14:53 -05:00
|
|
|
homepage,
|
|
|
|
posts,
|
|
|
|
rss,
|
2020-01-27 19:31:59 -05:00
|
|
|
tutorials,
|
|
|
|
years,
|
2019-09-17 15:30:47 -04:00
|
|
|
};
|