mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
34 lines
650 B
JavaScript
Executable File
34 lines
650 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'
|
|
import Invalid from './Invalid'
|
|
|
|
// App Layout Components
|
|
import * as AppLayout from './Layout/index.js'
|
|
import PageTransition from './PageTransition'
|
|
|
|
// User Components
|
|
|
|
// Post Components
|
|
import MediaPlayer from './MediaPlayer'
|
|
import PostCreator from './PostCreator'
|
|
import PostCard from './PostCard'
|
|
|
|
// Mix & Export all
|
|
export {
|
|
AppLayout,
|
|
PostCard,
|
|
Invalid,
|
|
Icons,
|
|
Feather,
|
|
About,
|
|
MediaPlayer,
|
|
PageTransition,
|
|
Loader,
|
|
PostCreator
|
|
}
|