This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/pages/index.js
2022-10-10 09:34:38 +01:00

16 lines
194 B
JavaScript

import {Component} from 'react'
export default class Home extends Component {
constructor(props) {
super(props);
}
async componentDidMount() {
}
render() {
return <>
hi
</>
}
}