20 lines
406 B
TypeScript
20 lines
406 B
TypeScript
// - Import react components
|
|
import React, { Component } from 'react'
|
|
import IconButton from 'material-ui/IconButton'
|
|
import MoreVertIcon from 'material-ui-icons/MoreVert'
|
|
import { grey } from 'material-ui/colors'
|
|
|
|
/**
|
|
* DOM styles
|
|
*
|
|
*
|
|
* @memberof Post
|
|
*/
|
|
const styles = {
|
|
|
|
}
|
|
// TODO: Delete the component
|
|
const IconButtonElementComponent = (<div> </div>)
|
|
|
|
export default IconButtonElementComponent
|