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
import { useState } from 'react'; | |
export default function App() { | |
return ( | |
<> | |
<VerySlowComponent /> | |
<BunchOfStuff /> | |
<OtherStuffAlsoComplicated /> | |
</> | |
); |
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
import { useState } from 'react'; | |
import { BunchOfStuff, OtherStuffAlsoComplicated } from './components/mocks'; | |
import { VerySlowComponent } from './components/very-slow-component'; | |
import './styles.scss'; | |
const MovingBlock = ({ position }: { position: number }) => ( | |
<div className="movable-block" style={{ top: position }}> | |
{position} | |
</div> |
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
import { useState } from 'react'; | |
export default function App() { | |
// add some state | |
const [isOpen, setIsOpen] = useState(false); | |
return ( | |
<> | |
{/* add the button */} | |
<Button onClick={() => setIsOpen(true)}>Open dialog</Button> |
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
query { | |
locations { | |
id | |
events { | |
id | |
name | |
location { | |
id | |
events { | |
id |
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
query { | |
locations { | |
id | |
name | |
events { | |
id | |
name | |
} | |
promotions { | |
id |
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
type Event { | |
id: String | |
name: String | |
location: Location | |
} | |
type Promotion { | |
id: String | |
name: String | |
location: Location |
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
type Event { | |
id: String | |
name: String | |
location_id: String | |
} | |
type Promotion { | |
id: String | |
name: String | |
location_id: String |
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
import Foundation | |
// Option 1 | |
public enum Space {} | |
extension Space { | |
public static let four: CGFloat = 4 | |
public static let eight: CGFloat = 8 | |
public static let twelve: CGFloat = 12 |
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
// | |
// SampleDelegateWrapper.swift | |
// Plugin | |
// | |
// Created by Uday Pandey on 18/11/2022. | |
// | |
import Foundation | |
enum ZigbeePeripheral {} |
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
dyld[10976]: Library not loaded: @rpath/openssl.framework/openssl | |
Referenced from: /private/var/containers/Bundle/Application/18542682-F42D-4D3B-A97E-C6DE7C019E93/Garrison.app/Frameworks/AppCoreWrapper.framework/AppCoreWrapper | |
Reason: tried: '/usr/lib/swift/openssl.framework/openssl' (no such file), '/private/var/containers/Bundle/Application/18542682-F42D-4D3B-A97E-C6DE7C019E93/Garrison.app/Frameworks/openssl.framework/openssl' (no such file), '/private/var/containers/Bundle/Application/18542682-F42D-4D3B-A97E-C6DE7C019E93/Garrison.app/Frameworks/AppCoreWrapper.framework/Frameworks/openssl.framework/openssl' (code signature in <4F288B6D-CF91-349E-B898-2D971560B5E2> '/private/var/containers/Bundle/Application/18542682-F42D-4D3B-A97E-C6DE7C019E93/Garrison.app/Frameworks/AppCoreWrapper.framework/Frameworks/openssl.framework/openssl' not valid for use in process: mapped file has no cdhash, completely unsigned? Code has to be at least ad-hoc signed.), '/private/var/containers/Bundle/Application/18542682-F42 |
NewerOlder