Add basic services; Base layout

This commit is contained in:
Aslan 2026-01-01 17:21:56 +01:00
parent be6467cd2c
commit ef526cd2db
30 changed files with 291 additions and 34 deletions

View file

@ -1,5 +1,5 @@
import type { Component } from "solid-js";
import CommunityView from "../CommunityView/CommunityView";
import { CommunityView } from "../CommunityView";
const ChannelView: Component = () => {
return (
@ -10,4 +10,4 @@ const ChannelView: Component = () => {
);
};
export default ChannelView;
export { ChannelView };