mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2025-04-05 01:21:28 +08:00
24 lines
590 B
TypeScript
24 lines
590 B
TypeScript
import * as React from "react";
|
|
import styles from "../../styles";
|
|
import { Button } from "@mui/material";
|
|
import { useParams } from "react-router-dom";
|
|
|
|
export default function Product() {
|
|
let { id } = useParams();
|
|
return (
|
|
<div>
|
|
<h1 style={{ ...styles.text_white, ...styles.text_XL }}>
|
|
Individual Product View for id {id}
|
|
</h1>
|
|
<Button
|
|
style={{
|
|
...styles.button_baseline,
|
|
...{ backgroundColor: "#80b38b" },
|
|
}}
|
|
variant="contained"
|
|
>
|
|
Login
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|