Last active
July 18, 2016 00:28
-
-
Save devmessias/0d47f7a72b0815cf2dda9e18db2ddb1c to your computer and use it in GitHub Desktop.
Documentação JsDoc com comentsOnly ativado
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @module Coletor | |
*/ | |
import React from 'react'; | |
/** | |
* Componente responsável por criar a interface de cadastro | |
* @class Coletor | |
* @memberof module:Coletor | |
*/ | |
class CatadorApp extends React.Component { | |
constructor(props) { | |
//... | |
} | |
/** | |
* @name module:Coletor.Coletor._handle_map_click | |
* @memberof module:Coletor.Coletor | |
* @description CallBack chamado quando usuário clica no mapa | |
* @method _handle_map_click | |
*/ | |
_handle_map_click(event) { | |
//.... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment