10 lines
204 B
TypeScript
10 lines
204 B
TypeScript
"use client";
|
|
|
|
export function PrintButton() {
|
|
return (
|
|
<button type="button" className="btn btn-primary no-print" onClick={() => window.print()}>
|
|
Drucken / PDF speichern
|
|
</button>
|
|
);
|
|
}
|