mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-02 22:17:18 +01:00
8 lines
162 B
TypeScript
8 lines
162 B
TypeScript
import React from 'react';
|
|
|
|
export default function(props) {
|
|
return (
|
|
<button className="p-button" onClick={props.onClick}>{props.children}</button>
|
|
);
|
|
}
|