roshiro/openws_one

View on GitHub
ui/src/pages/Dashboard.js

Summary

Maintainability
A
0 mins
Test Coverage
import React, { Component } from 'react';
import ApplicationList from './../components/ApplicationList';

class Dashboard extends Component {
  constructor() {
    super()

    this.state = {}
  }

  render() {
    return (
      <ApplicationList />
    );
  }
}

export default Dashboard;