{title}
{
// generate each point in content
content.map((text: string) =>{
return (
{text}
);
})
}
)
}
const Flag: React.FC = () => {
// Load Flag.json which has format of Object[],
// where each object has a title and content field.
let content = require("./Flag.json")
return (