Compare commits

3 Commits
main ... dev

Author SHA1 Message Date
98f52161a3 change: using map() in dashboard to generate entries 2022-07-08 16:18:41 +00:00
b4c547d9cb update: Login Page 2022-07-08 08:06:28 +00:00
df24f7cb3e add: Some pages and config 2022-07-03 15:50:50 +00:00
6 changed files with 289 additions and 5 deletions

View File

@ -1,4 +1,5 @@
{
"image": "node:18-bullseye",
"remoteUser": "1000"
"remoteUser": "1000",
"appPort": [3000, "60888:3000"]
}

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"remote.localPortHost": "allInterfaces"
}

View File

@ -1,6 +1,9 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// images: {
// loader: "custom"
// },
}
module.exports = nextConfig

File diff suppressed because one or more lines are too long

53
pages/login.tsx Normal file

File diff suppressed because one or more lines are too long

30
pages/test.tsx Normal file
View File

@ -0,0 +1,30 @@
import { NextPage } from "next";
import {
Button,
Col,
Container,
OverlayTrigger,
Popover,
} from "react-bootstrap";
const popover = (
<Popover id="mypop">
<Popover.Header as="h3">Right Popover</Popover.Header>
<Popover.Body>My Something special.</Popover.Body>
</Popover>
);
const Test: NextPage = () => {
return (
<Container>
<Col>
<h3 className="display-3">Hello</h3>
<OverlayTrigger trigger="click" placement="right" overlay={popover}>
<Button variant="primary">Click to see.</Button>
</OverlayTrigger>
</Col>
</Container>
);
};
export default Test;