mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 19:14:16 +00:00
42 lines
897 B
JavaScript
Executable File
42 lines
897 B
JavaScript
Executable File
// @alias from 'components'
|
|
|
|
// Helpers & Misc
|
|
import CustomIcons from './CustomIcons'
|
|
import Loader from './Loader/Loader.js'
|
|
import App_about from './App_about'
|
|
import * as Feather from 'feather-reactjs'
|
|
|
|
// App Layout Components
|
|
import * as MyLayout from './Layout/index.js'
|
|
import HeaderSearch from './HeaderSearch'
|
|
import PageTransition from './PageTransition'
|
|
|
|
// User Components
|
|
import UserBadges from './UserBadges'
|
|
import UserProfile from './UserProfile'
|
|
|
|
// Post Components
|
|
import MediaPlayer from './MediaPlayer'
|
|
import PostCard from './PostCard'
|
|
import Like_button from './Like_button'
|
|
import MainFeed from './MainFeed'
|
|
import PostCreator from './PostCreator'
|
|
|
|
// Mix & Export all
|
|
export {
|
|
Feather,
|
|
App_about,
|
|
MediaPlayer,
|
|
UserBadges,
|
|
PageTransition,
|
|
HeaderSearch,
|
|
UserProfile,
|
|
MyLayout,
|
|
Loader,
|
|
PostCard,
|
|
PostCreator,
|
|
CustomIcons,
|
|
Like_button,
|
|
MainFeed,
|
|
}
|