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