Files
old-v2-frontend/src/pages/index.js

11 lines
141 B
JavaScript
Raw Normal View History

import React from 'react'
const IndexPage = () => (
<div>
<h1>Index page</h1>
<p>Testing</p>
</div>
)
export default IndexPage