This commit is contained in:
Alexander Zinn
2025-08-25 13:36:17 -04:00
commit 705274c4ba
34 changed files with 1130 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import type {PropsWithChildren} from "react"
export interface IContainerProps extends PropsWithChildren {
style?: Record<string, string>;
}
export function Container({style, children}: IContainerProps) {
const containerStyle = Object.assign({}, style, {
border: '2px solid white',
width: '500px',
height: '500px',
margin: 'auto',
display: 'flex'
})
return <div style={containerStyle}>
{children}
</div>
}

View File

@@ -0,0 +1 @@
export * from './Container';