Packages
Csv2SqlDashboard is a blazing fast fully automated tool to load huge CSV files into a RDBMS.
Current section
Files
Jump to
Current section
Files
lib/dashboard_web/live/about_live.ex
defmodule DashboardWeb.Live.AboutLive do
use DashboardWeb, :live_view
def about_page(assigns) do
~H"""
<div class="about-container">
<div class="header-wrapper"><h1> csv2sql blazing fast csv to sql loader </h1></div>
<div><a href="https://github.com/kreeti/csv2sql" target="blank"> <i class="fa fa-github-square" aria-hidden="true"></i>Want to know more check out the project on github!</a></div>
</div>
"""
end
end