Next.js+React web interface for controlling HAProxy clusters (groups of servers), in conjunction with with https://gitgud.io/fatchan/haproxy-protection.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10 lines
245 B

import Link from 'next/link';
export default function BackButton({ to }) {
return (
<Link href={to} className='btn btn-sm btn-primary mt-3 ms-1 ps-2'>
<i className='bi-chevron-left pe-2' width='16' height='16' />
Back
</Link>
);
}