Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / src / components / features / Truncate / index.tsx
Size: Mime:
import * as React from 'react'

/**
 * @see https://github.com/reevoo/react-multiline-ellipsis
 * @note this was using ^ but we will want to do a better version
 */
class Truncate extends React.PureComponent {
  render() {
    return <React.Fragment>{this.props.children}</React.Fragment>
  }
}

export { Truncate }
export default Truncate