blob: e7a9c698ac77526455b4ff73a2bac115525049b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import React from "react";
export function About() {
return <div>
<h2>Mancala</h2>
<p>
Mancala is one of the oldest known board games. It has many different variations and is known under several different names.
The objective of the game is obtaining as many stones, beads or seeds as possible.
It is a game of skill that does not rely on any sort of randomness, making it similar to chess.
</p>
</div>
}
|