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
+19
View File
@@ -0,0 +1,19 @@
import { string } from 'prop-types';
import './HelpBox.css';
function HelpBox({ title, text }) {
return (
<article className="help-box">
<h2>{title}</h2>
<p>{text}</p>
</article>
);
}
HelpBox.propTypes = {
title: string,
text: string,
};
export default HelpBox;