Initial project upload to test support for custom gitea composite actions

This commit is contained in:
2023-07-27 14:09:07 +02:00
parent d7b1e90025
commit c5d240ffad
20 changed files with 8682 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
import HelpBox from './HelpBox';
import './HelpArea.css';
const HELP_ITEMS = [
{
id: 'h1',
title: 'What is Git?',
text: 'Git is a version control system, helping you to manage your code and create code snapshots.',
},
{
id: 'h2',
title: 'What is GitHub?',
text: 'GitHub is a company and online offering, providing you with tons of Git-related services (e.g., cloud repositories).',
},
{
id: 'h3',
title: 'What is GitHub Actions?',
text: 'GitHub Actions is an automation service (or CI / CD service) that helps you automate repository-related workflows and processes.',
},
];
function HelpArea() {
return (
<section data-testid="help-area" id="help-area">
{HELP_ITEMS.map((item) => (
<HelpBox key={item.id} title={item.title} text={item.text} />
))}
</section>
);
}
export default HelpArea;