Skip to content

Commit b4c7b29

Browse files
authored
Merge pull request #81 from smplrspace/next
v2.24.0
2 parents 89837f3 + d90b7b0 commit b4c7b29

File tree

5 files changed

+28
-17
lines changed

5 files changed

+28
-17
lines changed
-400 KB
Binary file not shown.

src/pages/examples/coming-soon/index.js

Lines changed: 0 additions & 17 deletions
This file was deleted.

src/pages/examples/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ import { seeThroughWalls } from './see-through-walls'
3535
import { tooltipsOptions } from './tooltips'
3636
import { airQuality } from './air-quality'
3737
import { embeddedEditor } from './embedded-editor'
38+
import { markup } from './markup'
3839

3940
const projects = [
4041
helloWorld,
@@ -45,6 +46,7 @@ const projects = [
4546
propertyManagement,
4647
addDataElements,
4748
stackingPlan,
49+
markup,
4850
warehouseBins,
4951
tooltipsOptions,
5052
controlledCamera,

src/pages/examples/markup/card.png

90.5 KB
Loading

src/pages/examples/markup/index.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/* eslint-disable import/no-webpack-loader-syntax */
2+
import React from 'react'
3+
4+
import StackblitzProject from '../../../components/StackblitzProject'
5+
6+
import { USE_CASES } from '../_categories'
7+
8+
export const markup = {
9+
slug: 'markup',
10+
title: 'Markup',
11+
category: USE_CASES,
12+
description: `Use our floor plan spatial data extraction and computation APIs to quickly markup a space and extract statistics.`,
13+
published: true,
14+
stackblitzProjects: [
15+
{
16+
lang: 'React',
17+
id: 'smplr-markup',
18+
openFile: 'index.tsx',
19+
default: true
20+
}
21+
]
22+
}
23+
24+
export default function () {
25+
return <StackblitzProject project={markup} />
26+
}

0 commit comments

Comments
 (0)