Skip to content

Commit

Permalink
Version 1.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
ATATC committed Oct 15, 2023
1 parent 3386c54 commit f0bd8f5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@atatctech/mui-presets",
"type": "module",
"version": "1.1.0",
"version": "1.1.1",
"author": "ATATC",
"description": "Additional preset components for MUI.",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/components.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/components.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ export function PaperAtCenter(props: PropsWithChildren): ReactNode {
);
}

export function MainContainer(props: PropsWithChildren): ReactNode {
export function MainContainer(props: PropsWithChildren & PropsWithMarginAndPadding): ReactNode {
return (
<Container component="main">
<Center mt={2}>
<Center {...props}>
{props.children}
</Center>
</Container>
Expand Down

0 comments on commit f0bd8f5

Please sign in to comment.