mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
15 lines
415 B
JavaScript
Executable File
15 lines
415 B
JavaScript
Executable File
import React from 'react'
|
|
import * as ycore from 'ycore'
|
|
import {PostCreator, MainFeed} from 'components'
|
|
import styles from './index.less'
|
|
|
|
export default class Main extends React.Component {
|
|
render(){
|
|
return (
|
|
<div className={styles.mainWrapper}>
|
|
<PostCreator userData={ycore.userData()} />
|
|
<MainFeed get="feed" />
|
|
</div>
|
|
)
|
|
}
|
|
} |