mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
47 lines
1008 B
JavaScript
Executable File
47 lines
1008 B
JavaScript
Executable File
// @alias from 'components'
|
|
|
|
// Helpers & Misc
|
|
import CustomIcons from './CustomIcons'
|
|
import Loader from './Loader/Loader.js'
|
|
import ScrollBar from './ScrollBar'
|
|
import Page from './Page'
|
|
|
|
// App Layout Components
|
|
import * as MyLayout from './Layout/index.js'
|
|
import MicroHeader from './MicroHeader'
|
|
import HeaderSearch from './HeaderSearch'
|
|
import PageTransition from './PageTransition'
|
|
import YulioID from './YulioID'
|
|
|
|
// User Components
|
|
import UserBadges from './UserBadges'
|
|
import UserProfile from './UserProfile'
|
|
import SearchCard from './SearchCard'
|
|
|
|
// Post Components
|
|
import PostCard from './PostCard'
|
|
import LikeBTN from './LikeBtn'
|
|
import MainFeed from './MainFeed'
|
|
import PostCreator from './PostCreator'
|
|
|
|
// Mix & Export all
|
|
export
|
|
{
|
|
UserBadges,
|
|
PageTransition,
|
|
SearchCard,
|
|
HeaderSearch,
|
|
YulioID,
|
|
UserProfile,
|
|
MyLayout,
|
|
Loader,
|
|
Page,
|
|
ScrollBar,
|
|
PostCard,
|
|
PostCreator,
|
|
CustomIcons,
|
|
LikeBTN,
|
|
MainFeed,
|
|
MicroHeader
|
|
}
|