This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Item | 9/30/2023 | 6/30/2023 | 3/31/2023 | 12/31/2022 | |
---|---|---|---|---|---|
Revenue (Operating) | 8.1m | 4.77m | 2.78m | 2.96m | |
QoQ Growth | 70% | 71.5% | - | - | |
Cost Of Revenue | 1.18m | 776k | 783k | 485k | |
Gross Profit | 6.927m | 4.414m | 1.998m | 2.476m | |
Gross Margin | 85% | 92.5% | 71.8% | 83% | |
Operating Expenses | 73.831m | 71.77m | 78.263m | 37.023m | |
EBITDA | -63.796m | -63.256m | -72.695m | -64.757m |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
"Cheese", | |
"Pepperoni", | |
"Hamburger", | |
"Pineapple", | |
"Margarita" | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param {number[]} nums | |
* @return {number} | |
*/ | |
const findLuckyNumber = (nums) => { | |
// do stuff here. | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx jsx */ | |
import { useMemo, useState } from 'react' | |
import { css, jsx } from '@emotion/react' | |
import { Container, Row, Col, Form, Table } from 'react-bootstrap' | |
const customers = ['Jack', 'Sally', 'Jane', 'Mark'] | |
const itemInitializer = { | |
description: '', | |
qty: '', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx jsx */ | |
import { useState } from 'react' | |
import { css, jsx } from '@emotion/react' | |
import { Container, Row, Col, Form, Table } from 'react-bootstrap' | |
const customers = ['Jack', 'Sally', 'Jane', 'Mark'] | |
const itemInitializer = { | |
description: '', | |
qty: '', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx jsx */ | |
import { useState } from 'react' | |
import { css, jsx } from '@emotion/react' | |
import { Container, Row, Col, Form, Table } from 'react-bootstrap' | |
const customers = ['Jack', 'Sally', 'Jane', 'Mark'] | |
const itemInitializer = { | |
description: '', | |
qty: '', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx jsx */ | |
import { useState } from 'react' | |
import { css, jsx } from '@emotion/react' | |
import { Container, Row, Col, Form, Table } from 'react-bootstrap' | |
const customers = ['Jack', 'Sally', 'Jane', 'Mark'] | |
const itemInitializer = { | |
description: '', | |
qty: '', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx jsx */ | |
import { useState } from 'react' | |
import { css, jsx } from '@emotion/react' | |
import { Container, Row, Col, Form, Table } from 'react-bootstrap' | |
const customers = ['Jack', 'Sally', 'Jane', 'Mark'] | |
const itemInitializer = { | |
description: '', | |
qty: '', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx jsx */ | |
import { useState } from 'react' | |
import { css, jsx } from '@emotion/react' | |
import { Container, Row, Col, Form, Table } from 'react-bootstrap' | |
const customers = ['Jack', 'Sally', 'Jane', 'Mark'] | |
const itemInitializer = { | |
description: '', | |
qty: '', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx jsx */ | |
import { useState } from 'react' | |
import { css, jsx } from '@emotion/react' | |
import { Container, Row, Col, Form, Table } from 'react-bootstrap' | |
const customers = ['Jack', 'Sally', 'Jane', 'Mark'] | |
const Invoice = () => { | |
const [customer, setCustomer] = useState('') | |
const [title, setTitle] = useState('') |