histogram width divide by mode, not total #2
1 changed files with 9 additions and 3 deletions
|
@ -8,14 +8,20 @@ type Props = {
|
||||||
export const AboutModal = ({ isOpen, handleClose }: Props) => {
|
export const AboutModal = ({ isOpen, handleClose }: Props) => {
|
||||||
return (
|
return (
|
||||||
<BaseModal title="About" isOpen={isOpen} handleClose={handleClose}>
|
<BaseModal title="About" isOpen={isOpen} handleClose={handleClose}>
|
||||||
<p className="text-sm text-gray-500 dark:text-gray-300">
|
This is a honey powered fork of an open source word guessing game -{' '}
|
||||||
This is an open source word guessing game -{' '}
|
|
||||||
<a
|
<a
|
||||||
href="https://github.com/hannahcode/GAME"
|
href="https://git.k-fortytwo.de/christofsteel/honigle"
|
||||||
className="underline font-bold"
|
className="underline font-bold"
|
||||||
>
|
>
|
||||||
check out the code here
|
check out the code here
|
||||||
</a>{' '}
|
</a>{' '}
|
||||||
|
and{' '}
|
||||||
|
<a
|
||||||
|
href="https://github.com/hannahcode/word-guessing-game"
|
||||||
|
className="underline font-bold"
|
||||||
|
>
|
||||||
|
the original code here
|
||||||
|
</a>{' '}
|
||||||
</p>
|
</p>
|
||||||
</BaseModal>
|
</BaseModal>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue