Formação do Netuno Maranhão. https://www.linkedin.com/groups/9048260/
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.
 

23 lines
432 B

import React, { Component } from "react";
import Tabs from 'antd/lib/tabs';
import "./index.less";
const { TabPane } = Tabs;
export default class Dashboard2Container extends Component {
constructor(props) {
super(props);
this.state = {
};
}
render() {
return (
<div className="my-dashboard">
<h1>Outro Dashboard</h1>
</div>
);
}
}