mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 19:14:16 +00:00
11 lines
211 B
JavaScript
Executable File
11 lines
211 B
JavaScript
Executable File
import React from "react"
|
|
|
|
import { FollowersList } from "components"
|
|
|
|
import "./followers.less"
|
|
|
|
export default React.memo((props) => {
|
|
return <FollowersList
|
|
user_id={props.state.user._id}
|
|
/>
|
|
}) |