generated from Exabyte-io/template-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
34 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { StackProps } from "@mui/material/Stack"; | ||
import React from "react"; | ||
export type ColumnContainerProps = StackProps; | ||
export default function ColumnContainer({ children }: ColumnContainerProps): React.JSX.Element; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import Stack from "@mui/material/Stack"; | ||
import React from "react"; | ||
export default function ColumnContainer({ children }) { | ||
return React.createElement(Stack, { overflow: "hidden" }, children); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { BoxProps } from "@mui/material/Box"; | ||
import React from "react"; | ||
export type ScrollableContainerProps = BoxProps; | ||
export default function ScrollableContainer({ children }: ScrollableContainerProps): React.JSX.Element; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import Box from "@mui/material/Box"; | ||
import React from "react"; | ||
export default function ScrollableContainer({ children }) { | ||
return React.createElement(Box, { overflow: "auto" }, children); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import Stack, { StackProps } from "@mui/material/Stack"; | ||
import React from "react"; | ||
|
||
export type ColumnContainerProps = StackProps; | ||
|
||
export default function ColumnContainer({ children }: ColumnContainerProps) { | ||
return <Stack overflow="hidden">{children}</Stack>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import Box, { BoxProps } from "@mui/material/Box"; | ||
import React from "react"; | ||
|
||
export type ScrollableContainerProps = BoxProps; | ||
|
||
export default function ScrollableContainer({ children }: ScrollableContainerProps) { | ||
return <Box overflow="auto">{children}</Box>; | ||
} |
This file was deleted.
Oops, something went wrong.