Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem
https://nextgraph.org
byzantine-fault-tolerancecrdtsdappsdecentralizede2eeeventual-consistencyjson-ldlocal-firstmarkdownocapoffline-firstp2pp2p-networkprivacy-protectionrdfrich-text-editorself-hostedsemantic-websparqlweb3collaboration
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
838 B
33 lines
838 B
import { useState } from 'react'
|
|
import React, { FunctionComponent } from 'react';
|
|
import { Header } from './Header';
|
|
import { Contact } from './Contact';
|
|
import { BrowserNGLdoProvider } from './reactMethods';
|
|
|
|
import './App.css'
|
|
|
|
import "../../../common/src/styles.css";
|
|
|
|
// function App() {
|
|
// const [count, setCount] = useState(0)
|
|
|
|
// return (
|
|
// <div className="flex flex-col items-center justify-center h-screen bg-gray-100">
|
|
// <h1 className="text-4xl font-bold text-blue-600">Hello, Tailwind!</h1>
|
|
// <p className="mt-4 text-gray-700">Tailwind CSS is working in Vite!</p>
|
|
// </div>
|
|
// )
|
|
// }
|
|
|
|
const App: FunctionComponent = () => {
|
|
return (
|
|
<div className="App">
|
|
<BrowserNGLdoProvider>
|
|
<Header />
|
|
<Contact />
|
|
</BrowserNGLdoProvider>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App
|
|
|