
* install react-router and redux * create redux store and start fetching some playbooks from ara-server * create playbooks and config states in redux Change-Id: I455f217797fc69d722bedd573eaed2cea70ede6b
13 lines
260 B
JavaScript
13 lines
260 B
JavaScript
import React, { Component } from "react";
|
|
import { MainContainer } from "../containers";
|
|
|
|
export default class AboutContainer extends Component {
|
|
render() {
|
|
return (
|
|
<MainContainer>
|
|
<p>AboutContainer</p>
|
|
</MainContainer>
|
|
);
|
|
}
|
|
}
|