10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
import Container from "../../components/Container";
|
|
|
|
const Deploy = () => {
|
|
return (
|
|
<Container css={{ py: "$10" }}>This will be the deploy page</Container>
|
|
);
|
|
};
|
|
|
|
export default Deploy;
|