Added routes and navbar
This commit was merged in pull request #2.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import React from "react";
|
||||
|
||||
type ButtonProps = {
|
||||
className?: string;
|
||||
text: string;
|
||||
};
|
||||
|
||||
const Button = ({ text, className }: ButtonProps) => {
|
||||
return <button className={`btn-primary uppercase text-[13px] ${className}`}>{text}</button>;
|
||||
};
|
||||
|
||||
export default Button;
|
||||
Reference in New Issue
Block a user