Files
archived-solorice/.config/spicetify/CustomApps/history-in-sidebar/src/app.tsx
Kristofers Solo d888080cc7 Update 2024-08-27
2024-08-27 10:39:38 +03:00

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;