2022-09-06 19:26:43 -04:00
|
|
|
import {LitElement, html} from './lit-all.min.js';
|
|
|
|
import * as tfrpc from '/static/tfrpc.js';
|
|
|
|
|
|
|
|
import * as tf_app from './tf-app.js';
|
|
|
|
import * as tf_message from './tf-message.js';
|
|
|
|
import * as tf_user from './tf-user.js';
|
|
|
|
import * as tf_compose from './tf-compose.js';
|
2022-09-11 13:42:41 -04:00
|
|
|
import * as tf_news from './tf-news.js';
|
2022-09-06 19:26:43 -04:00
|
|
|
import * as tf_profile from './tf-profile.js';
|
2024-04-21 14:18:06 -04:00
|
|
|
import * as tf_reactions_modal from './tf-reactions-modal.js';
|
2023-06-14 18:51:58 -04:00
|
|
|
import * as tf_tab_mentions from './tf-tab-mentions.js';
|
2022-09-11 13:42:41 -04:00
|
|
|
import * as tf_tab_news from './tf-tab-news.js';
|
2023-05-02 12:47:27 -04:00
|
|
|
import * as tf_tab_news_feed from './tf-tab-news-feed.js';
|
2022-09-11 13:42:41 -04:00
|
|
|
import * as tf_tab_search from './tf-tab-search.js';
|
2023-06-21 20:27:27 -04:00
|
|
|
import * as tf_tab_connections from './tf-tab-connections.js';
|
2023-08-16 18:48:59 -04:00
|
|
|
import * as tf_tab_query from './tf-tab-query.js';
|
2024-02-24 11:09:34 -05:00
|
|
|
import * as tf_tag from './tf-tag.js';
|
2024-11-20 19:44:27 -05:00
|
|
|
import * as tf_styles from './tf-styles.js';
|
|
|
|
|
2024-11-20 20:24:58 -05:00
|
|
|
window.addEventListener('load', function () {
|
2024-11-20 19:44:27 -05:00
|
|
|
let style = document.createElement('style');
|
|
|
|
style.innerText = tf_styles.styles;
|
|
|
|
document.body.appendChild(style);
|
2024-11-20 20:24:58 -05:00
|
|
|
});
|