mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 02:54:15 +00:00
30 lines
556 B
JavaScript
Executable File
30 lines
556 B
JavaScript
Executable File
// @alias from 'components'
|
|
|
|
// Helpers & Misc
|
|
import * as Icons from './Icons'
|
|
import Loader from './Loader/Loader.js'
|
|
import About from './About'
|
|
import * as Feather from 'feather-reactjs'
|
|
|
|
// App Layout Components
|
|
import * as MyLayout from './Layout/index.js'
|
|
import PageTransition from './PageTransition'
|
|
|
|
// User Components
|
|
import UserBadges from './UserBadges'
|
|
|
|
// Post Components
|
|
import MediaPlayer from './MediaPlayer'
|
|
|
|
// Mix & Export all
|
|
export {
|
|
Icons,
|
|
Feather,
|
|
About,
|
|
MediaPlayer,
|
|
UserBadges,
|
|
PageTransition,
|
|
MyLayout,
|
|
Loader
|
|
}
|