This commit is contained in:
Laux Dev
2026-03-03 15:23:58 +08:00
parent 62c438eed0
commit 41184ee716
9 changed files with 77 additions and 48 deletions

View File

@@ -0,0 +1,11 @@
import React from "react";
import styles from "./styles.module.css";
const SecondaryButton = (props) => {
return (
<button className={styles.button} {...props}>
<p>{props.text}</p>
</button>
);
};
export default SecondaryButton;