mirror of
https://github.com/wassname/talk.git
synced 2026-08-04 13:23:35 +08:00
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
import React from 'react';
|
|
import { Dialog } from 'plugin-api/beta/client/components/ui';
|
|
|
|
class DeleteMyAccount extends React.Component {
|
|
render() {
|
|
return <Dialog open={false}>Holaa</Dialog>;
|
|
}
|
|
}
|
|
|
|
export default DeleteMyAccount;
|