File size: 178 Bytes
c01955c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import ejs from "ejs";

export default function reder_html(template: string, temp_data: any) {
  const html = ejs.render(template, {
    data: temp_data  
  });
  return html;
}