mirror of
https://github.com/kopia/kopia.git
synced 2026-03-28 02:53:05 -04:00
* 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
14 lines
230 B
JavaScript
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.";
|
|
}
|
|
};
|