Skip to content

Instantly share code, notes, and snippets.

@devmessias
Last active July 18, 2016 00:28
Show Gist options
  • Save devmessias/0d47f7a72b0815cf2dda9e18db2ddb1c to your computer and use it in GitHub Desktop.
Save devmessias/0d47f7a72b0815cf2dda9e18db2ddb1c to your computer and use it in GitHub Desktop.
Documentação JsDoc com comentsOnly ativado
/**
* @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