added example react js app to play with gitea actions
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import './HelpBox.css';
|
||||
|
||||
function HelpBox({ title, text }) {
|
||||
return (
|
||||
<article className="help-box">
|
||||
<h2>{title}</h2>
|
||||
<p>{text}</p>
|
||||
</article>
|
||||
);
|
||||
}
|
||||
|
||||
export default HelpBox;
|
||||
Reference in New Issue
Block a user