Skip to content

Instantly share code, notes, and snippets.

View eyalcohen4's full-sized avatar

Eyal Cohen eyalcohen4

View GitHub Profile
@eyalcohen4
eyalcohen4 / SignIn.tsx
Created November 24, 2023 17:23
Sign In Button
"use client"
import { Button } from "./ui/button"
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
DialogTrigger,
import axios from 'axios';
import { parse } from 'ndjson';
async function fetchNDJSON(url: string): Promise<void> {
try {
const response = await axios({
method: 'get',
url: url,
responseType: 'stream'
});