mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-13 23:54:48 +01:00
16 lines
332 B
TypeScript
16 lines
332 B
TypeScript
import React from 'react'
|
|
import './GamePathNotify.css'
|
|
import Tr from '../../../utils/language'
|
|
|
|
export default class GamePathNotify extends React.Component {
|
|
render() {
|
|
return (
|
|
<div className="GameInstallNotify">
|
|
<span>
|
|
<Tr text={'main.game_path_notify'} />
|
|
</span>
|
|
</div>
|
|
)
|
|
}
|
|
}
|