MostOfLuck/frontend-project-12

View on GitHub
frontend/src/components/Buttons/LoginButton.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Button } from 'react-bootstrap';

const LoginButton = ({ title }) => (
  <Button
    type="submit"
    variant="outline-primary"
    className="w-100 mb-3"
  >
    {title}
  </Button>
);

export default LoginButton;