File tree Expand file tree Collapse file tree 5 files changed +28
-17
lines changed Expand file tree Collapse file tree 5 files changed +28
-17
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ import { seeThroughWalls } from './see-through-walls'
3535import { tooltipsOptions } from './tooltips'
3636import { airQuality } from './air-quality'
3737import { embeddedEditor } from './embedded-editor'
38+ import { markup } from './markup'
3839
3940const projects = [
4041 helloWorld ,
@@ -45,6 +46,7 @@ const projects = [
4546 propertyManagement ,
4647 addDataElements ,
4748 stackingPlan ,
49+ markup ,
4850 warehouseBins ,
4951 tooltipsOptions ,
5052 controlledCamera ,
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments