Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SutuSebastian committed Jun 5, 2024
1 parent a2f8a11 commit 2805b52
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions apps/web/examples/mockup/mockup.desktop.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { DefaultMockup, DesktopMockup } from "flowbite-react";
import { DesktopMockup } from "flowbite-react";
import { type CodeData } from "~/components/code-demo";

const code = `
"use client";
import { DefaultMockup } from "flowbite-react";
import { DesktopMockup } from "flowbite-react";
export function Component() {
return (
Expand All @@ -25,7 +25,7 @@ export function Component() {
`;

const codeRSC = `
import { DefaultMockup } from "flowbite-react";
import { DesktopMockup } from "flowbite-react";
export function Component() {
return (
Expand Down
4 changes: 2 additions & 2 deletions apps/web/examples/mockup/mockup.googlePixel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { type CodeData } from "~/components/code-demo";
const code = `
"use client";
import { DefaultMockup } from "flowbite-react";
import { GooglePixelMockup } from "flowbite-react";
export function Component() {
return (
Expand All @@ -25,7 +25,7 @@ export function Component() {
`;

const codeRSC = `
import { DefaultMockup } from "flowbite-react";
import { GooglePixelMockup } from "flowbite-react";
export function Component() {
return (
Expand Down
4 changes: 2 additions & 2 deletions apps/web/examples/mockup/mockup.laptop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { type CodeData } from "~/components/code-demo";
const code = `
"use client";
import { DefaultMockup } from "flowbite-react";
import { LaptopMockup } from "flowbite-react";
export function Component() {
return (
Expand All @@ -25,7 +25,7 @@ export function Component() {
`;

const codeRSC = `
import { DefaultMockup } from "flowbite-react";
import { LaptopMockup } from "flowbite-react";
export function Component() {
return (
Expand Down
4 changes: 2 additions & 2 deletions apps/web/examples/mockup/mockup.smartwatch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { type CodeData } from "~/components/code-demo";
const code = `
"use client";
import { DefaultMockup } from "flowbite-react";
import { SmartwatchMockup } from "flowbite-react";
export function Component() {
return (
Expand All @@ -25,7 +25,7 @@ export function Component() {
`;

const codeRSC = `
import { DefaultMockup } from "flowbite-react";
import { SmartwatchMockup } from "flowbite-react";
export function Component() {
return (
Expand Down
4 changes: 2 additions & 2 deletions apps/web/examples/mockup/mockup.tablet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { type CodeData } from "~/components/code-demo";
const code = `
"use client";
import { DefaultMockup } from "flowbite-react";
import { TabletMockup } from "flowbite-react";
export function Component() {
return (
Expand All @@ -25,7 +25,7 @@ export function Component() {
`;

const codeRSC = `
import { DefaultMockup } from "flowbite-react";
import { TabletMockup } from "flowbite-react";
export function Component() {
return (
Expand Down

0 comments on commit 2805b52

Please sign in to comment.