Newer
Older
CrypticOreWallet / src / app / App.tsx
@Drew Lemmy Drew Lemmy on 8 Aug 2020 157 bytes feat: initial commit
import React from "react";
import "./App.scss";

import MainLayout from "../layouts/main";

export default function() {
  return (
    <MainLayout />
  );
}