mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-13 15:44:35 +01:00
14 lines
321 B
TypeScript
14 lines
321 B
TypeScript
import React from 'react'
|
|
import './GamePathNotify.css'
|
|
|
|
export default class GamePathNotify extends React.Component {
|
|
render() {
|
|
return (
|
|
<div className="GameInstallNotify">
|
|
<span>You need to set your game path in the options!</span>
|
|
<span id="pointer">here ^</span>
|
|
</div>
|
|
)
|
|
}
|
|
}
|