mirror of
https://github.com/kristoferssolo/solorice.git
synced 2026-03-18 08:09:40 +00:00
13 lines
198 B
TypeScript
13 lines
198 B
TypeScript
import React from 'react'
|
|
|
|
class App extends React.Component {
|
|
componentDidMount() {
|
|
Spicetify.Platform.History.push('/history');
|
|
}
|
|
|
|
render() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default App; |