mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00
adds eslint
This commit is contained in:

committed by
Geoff Seemueller

parent
9698fc6f3b
commit
02c3253343
@@ -1,16 +1,12 @@
|
||||
import React from "react";
|
||||
import { SimpleGrid } from "@chakra-ui/react";
|
||||
import { Rocket, Shield } from "lucide-react";
|
||||
import DemoCard from "./DemoCard";
|
||||
import { SimpleGrid } from '@chakra-ui/react';
|
||||
import { Rocket, Shield } from 'lucide-react';
|
||||
import React from 'react';
|
||||
|
||||
import DemoCard from './DemoCard';
|
||||
|
||||
function DemoComponent() {
|
||||
return (
|
||||
<SimpleGrid
|
||||
columns={{ base: 1, sm: 1, lg: 2 }}
|
||||
spacing={"7%"}
|
||||
minH={"min-content"}
|
||||
h={"100vh"}
|
||||
>
|
||||
<SimpleGrid columns={{ base: 1, sm: 1, lg: 2 }} spacing={'7%'} minH={'min-content'} h={'100vh'}>
|
||||
<DemoCard
|
||||
icon={<Rocket size={24} color="teal" />}
|
||||
title="toak"
|
||||
@@ -18,7 +14,7 @@ function DemoComponent() {
|
||||
imageUrl="/code-tokenizer-md.jpg"
|
||||
badge="npm"
|
||||
onClick={() => {
|
||||
window.open("https://github.com/seemueller-io/toak");
|
||||
window.open('https://github.com/seemueller-io/toak');
|
||||
}}
|
||||
/>
|
||||
<DemoCard
|
||||
@@ -28,7 +24,7 @@ function DemoComponent() {
|
||||
imageUrl="/rehoboam.png"
|
||||
badge="APP"
|
||||
onClick={() => {
|
||||
window.open("https://rehoboam.seemueller.io");
|
||||
window.open('https://rehoboam.seemueller.io');
|
||||
}}
|
||||
/>
|
||||
</SimpleGrid>
|
||||
|
Reference in New Issue
Block a user