GraphQL API and utilities for the rpdata project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
316 B

  1. import React, { Component } from 'react';
  2. import Background from '../../common/Background';
  3. import LogsMenu from './LogsMenu';
  4. export default class LogsRoot extends Component {
  5. render() {
  6. return (
  7. <div className="LogsRoot theme-logs">
  8. <Background />
  9. <LogsMenu />
  10. </div>
  11. )
  12. }
  13. }