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