lpirola/processador-inscricao-evento

View on GitHub
src/routes/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import express from 'express'

let router = express.Router()

router.get('/', function(req, res, next) {
    res.render('index', { title: 'Processador inscrição evento' });
});

export default router