Files
Cultivation/src/ui/components/menu/GamePathNotify.tsx
2023-05-26 06:12:15 +02:00

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>
)
}
}