Initial commit: Tapalka monorepo (bot, front, strapi)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
.wrapper {
|
||||
max-width: 100%;
|
||||
min-height: 100vh;
|
||||
position: relative;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
12
CMyTapper/robucks-front/components/ui/wrapper/Wrapper.tsx
Normal file
12
CMyTapper/robucks-front/components/ui/wrapper/Wrapper.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import {PropsWithChildren} from "react";
|
||||
import styles from './Wrapper.module.css'
|
||||
|
||||
const Wrapper = ({ children } : PropsWithChildren) => {
|
||||
return(
|
||||
<div className={styles.wrapper}>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Wrapper;
|
||||
Reference in New Issue
Block a user