Moving to a todo app
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import classNames from 'classnames';
|
||||
|
||||
const PageStack = ({ children, className, ...props }) => (
|
||||
<div {...props} className={classNames('flex-1 z-0 overflow-hidden relative', className)}>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
|
||||
export default PageStack;
|
||||
Reference in New Issue
Block a user