mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
added notes menu
This commit is contained in:
parent
fce11163aa
commit
57f37723fa
14 changed files with 203 additions and 105 deletions
22
src/components/containers/Columns/index.tsx
Normal file
22
src/components/containers/Columns/index.tsx
Normal file
|
@ -0,0 +1,22 @@
|
|||
import React, { FC } from 'react';
|
||||
|
||||
import Masonry from 'react-masonry-css';
|
||||
|
||||
import styles from './styles.module.scss';
|
||||
|
||||
const defaultColumns = {
|
||||
default: 2,
|
||||
1280: 1,
|
||||
};
|
||||
|
||||
interface ColumnsProps {
|
||||
cols?: Record<number, number>;
|
||||
}
|
||||
|
||||
const Columns: FC<ColumnsProps> = ({ children, cols = defaultColumns }) => (
|
||||
<Masonry className={styles.wrap} breakpointCols={cols} columnClassName={styles.column}>
|
||||
{children}
|
||||
</Masonry>
|
||||
);
|
||||
|
||||
export { Columns };
|
Loading…
Add table
Add a link
Reference in a new issue