Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed src/pages/examples/coming-soon/card.png
Binary file not shown.
17 changes: 0 additions & 17 deletions src/pages/examples/coming-soon/index.js

This file was deleted.

2 changes: 2 additions & 0 deletions src/pages/examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import { seeThroughWalls } from './see-through-walls'
import { tooltipsOptions } from './tooltips'
import { airQuality } from './air-quality'
import { embeddedEditor } from './embedded-editor'
import { markup } from './markup'

const projects = [
helloWorld,
Expand All @@ -45,6 +46,7 @@ const projects = [
propertyManagement,
addDataElements,
stackingPlan,
markup,
warehouseBins,
tooltipsOptions,
controlledCamera,
Expand Down
Binary file added src/pages/examples/markup/card.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions src/pages/examples/markup/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/* eslint-disable import/no-webpack-loader-syntax */
import React from 'react'

import StackblitzProject from '../../../components/StackblitzProject'

import { USE_CASES } from '../_categories'

export const markup = {
slug: 'markup',
title: 'Markup',
category: USE_CASES,
description: `Use our floor plan spatial data extraction and computation APIs to quickly markup a space and extract statistics.`,
published: true,
stackblitzProjects: [
{
lang: 'React',
id: 'smplr-markup',
openFile: 'index.tsx',
default: true
}
]
}

export default function () {
return <StackblitzProject project={markup} />
}