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.
 
ReactOrganizer/App.js

15 lines
257 B

import React from "react";
import App from "./Main";
export default class App1 extends React.Component {
constructor() {
super();
this.state = {
isReady: false
};
}
render() {
return <App />;
}
}