philips-software/cogito

View on GitHub
workspaces/demo-app/src/pages/stream-encryption/StreamEncryption.js

Summary

Maintainability
B
4 hrs
Test Coverage
F
0%
import React from 'react'
import { Demo } from 'components/ui/demo'
import { CogitoStreamEncryption } from 'components/cogito-crypto'

class StreamEncryption extends React.Component {
  state = {}

  render () {
    const { match, location, history } = this.props
    return (
      <Demo routeProps={{ match, location, history }} subtitle='Stream Encryption' documentation='documentation/stream-encryption.md'>
        <CogitoStreamEncryption {...this.props} />
      </Demo>
    )
  }
}

export { StreamEncryption }