mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-16 00:54:40 +01:00
mod list colors and such
This commit is contained in:
21
src/ui/components/mods/ModList.tsx
Normal file
21
src/ui/components/mods/ModList.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import React from 'react'
|
||||
|
||||
import './ModList.css'
|
||||
|
||||
interface IProps {
|
||||
sort: string
|
||||
}
|
||||
|
||||
interface IState {
|
||||
modList: string[]
|
||||
}
|
||||
|
||||
export class ModList extends React.Component<IProps, IState> {
|
||||
constructor(props: IProps) {
|
||||
super(props)
|
||||
}
|
||||
|
||||
render() {
|
||||
return <div className="ModList"></div>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user