SPB Git

spb/groupe-ka Public

Groupe KA — site du holding + KA ID (compte unique & SSO des 7 plateformes). Next.js 16, SQLite, Google & Apple login.

TypeScript 89.7% CSS 5.8% HTML 4.4%
255 B · 11 lines tsx
Raw Blame History
1// Auteur : Simon-Pierre Boucher — contact@spboucher.ai2"use client";34export default function PrintButton() {5  return (6    <button type="button" className="btn btn-primary" onClick={() => window.print()}>7      Imprimer la carte8    </button>9  );10}11