Skip to content

Instantly share code, notes, and snippets.

View LameckMeshack's full-sized avatar
💻
Software Developer @ Value Chain Factory

Lameck Meshack Otieno LameckMeshack

💻
Software Developer @ Value Chain Factory
View GitHub Profile
@LameckMeshack
LameckMeshack / 1_searchbar_live.ex
Created February 23, 2025 13:52 — forked from caspg/1_searchbar_live.ex
Example of real-time search bar implementation in Phoenix LiveView and Tailwind. Working example on https://travelermap.net/parks/usa
defmodule TravelerWeb.SearchbarLive do
use TravelerWeb, :live_view
alias Phoenix.LiveView.JS
alias Traveler.Places
def mount(_params, _session, socket) do
socket = assign(socket, places: [])
{:ok, socket, layout: false}
end