Initial project upload to test support for custom gitea composite actions
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user