-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from Kernel360/common-component-flex
공통 컴포넌트: Flex 컴포넌트 제작
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 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,26 @@ | ||
import { CSSProperties, useMemo } from 'react'; | ||
|
||
interface FlexProps { | ||
align?: CSSProperties['alignItems'] | ||
justify?: CSSProperties['justifyContent'] | ||
direction?: CSSProperties['flexDirection'] | ||
children: React.ReactNode | ||
} | ||
|
||
function Flex({ | ||
align, justify, direction, children, | ||
}: FlexProps) { | ||
const styles = useMemo(() => { | ||
return { | ||
display: 'flex', alignItems: align, justifyContent: justify, flexDirection: direction, | ||
}; | ||
}, [align, justify, direction]); | ||
|
||
return ( | ||
<div style={styles}> | ||
{children} | ||
</div> | ||
); | ||
} | ||
|
||
export default Flex; |