Files
actions-playground/src/components/HelpBox.jsx
T
tom.coursow 14d6d17207
Gitea Actions Demo / Test-Job (push) Successful in 8s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 20s
added example react js app to play with gitea actions
2023-07-12 00:12:24 +02:00

13 lines
197 B
React

import './HelpBox.css';
function HelpBox({ title, text }) {
return (
<article className="help-box">
<h2>{title}</h2>
<p>{text}</p>
</article>
);
}
export default HelpBox;