Created
June 2, 2023 21:26
-
-
Save tanner-west/02e6aa1c0e9e7245907ba341575b7b36 to your computer and use it in GitHub Desktop.
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
// | |
// RCTVisionModule.swift | |
// VisionNativeModulePOC | |
// | |
// Created by Tanner West on 6/2/23. | |
// | |
import Foundation | |
@objc(RCTVisionModule) | |
class RCTVisionModule: NSObject { | |
@objc(sayHello) | |
func sayHello() { | |
print("TANNER SAYS HELLO") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment