13 lines
227 B
Smarty
13 lines
227 B
Smarty
import React from 'react';
|
|
import styles from './index{{{ cssExt }}}';
|
|
|
|
const {{{ name }}} = () => {
|
|
return (
|
|
<div>
|
|
<h1 className={styles.title}>Page {{{ name }}}</h1>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default {{{ name }}}
|