tokenbridge-burner-wallet-p.../my-plugin/src/ui/MyElement.tsx

13 lines
230 B
TypeScript
Raw Normal View History

2019-10-30 22:11:56 -07:00
import React from 'react';
import { BurnerContext } from '@burner-wallet/types';
const MyElement: React.FC<BurnerContext> = () => {
return (
<div>
Injected plugin element
</div>
);
};
export default MyElement;