philips-software/cogito

View on GitHub
workspaces/demo-app/src/pages/attestations/Attestations.js

Summary

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

class Attestations extends React.Component {
  state = {}

  render () {
    const { match, location, history } = this.props
    return (
      <Demo routeProps={{ match, location, history }} subtitle='Attestations' documentation='documentation/attestations.md'>
        <CogitoAttestations {...this.props} />
      </Demo>
    )
  }
}

export { Attestations }