mirror of
https://github.com/amineo/t2-stat-parser.git
synced 2026-01-19 17:34:43 +00:00
14 lines
265 B
JavaScript
14 lines
265 B
JavaScript
|
|
import React from 'react'
|
||
|
|
import Layout from '@/Shared/Layout'
|
||
|
|
|
||
|
|
|
||
|
|
export default function Index(props) {
|
||
|
|
return (
|
||
|
|
<Layout title={props.pageTitle}>
|
||
|
|
<div className="border-4 border-dashed border-gray-300 rounded-lg h-96">
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</Layout>
|
||
|
|
)
|
||
|
|
}
|