mirror of
https://github.com/ZSCNetSupportDept/website.git
synced 2025-10-28 17:05:03 +08:00
15 lines
273 B
JavaScript
15 lines
273 B
JavaScript
import React from 'react';
|
|
import Layout from '@theme/Layout';
|
|
|
|
export default function main() {
|
|
console.log("Hello World!"+navigator.UserAgent);
|
|
return (
|
|
<Layout>
|
|
<h1>My React page</h1>
|
|
<p>This is a React page</p>
|
|
<p></p>
|
|
</Layout>
|
|
|
|
);
|
|
}
|