sanity-plugin-spreadsheet-wizard-x
Version:
Spreadsheet Wizard is a magnificient Sanity plugin that help you EXPORT & IMPORT spreadsheets. A fantastic bridge between Sanity & your spreadsheet software of choice. (Google Sheets... Excel... Numbers etc.)
18 lines (16 loc) • 353 B
JavaScript
import React from "react";
import { Container, Card, Grid, Flex, Stack, Inline, Button } from "@sanity/ui";
export default function Layout({ children, align }) {
return (
<Flex
style={{
justifyContent: "start",
height: "100%",
gridAutoFlow: "column",
}}
gap={0}
>
{children}
</Flex>
);
}