1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-17 12:01:13 +02:00

add back A component

This commit is contained in:
Kushagra Gour
2018-06-28 02:51:33 +05:30
committed by GitHub
parent 17e4491d85
commit c8babdb74e

View File

@@ -19,6 +19,10 @@ class Clickable extends Component {
}
}
export function A(props) {
return <Clickable Tag={'a'} {...props} />;
}
export function Button(props) {
return <Clickable Tag={'button'} {...props} />;
}