Files
kopia/app/src/App.js
Jarek Kowalski f605f52624 Upgraded bootstrap to v5 and react-bootstrap accordingly (#1192)
* htmlui: upgraded bootstrap to v5.0.2 and react-bootstrap to v5

* htmlui: fixed test warnings

* app: removed unused dependencies on bootstrap and react-bootstrap

* more style fixes
2021-07-10 22:09:23 -07:00

14 lines
230 B
JavaScript

import { Component } from 'react';
import './App.css';
export default class App extends Component {
constructor() {
super();
this.state = { };
}
render() {
return "This ReactJS UI is unused for now.";
}
};