compass

An simple notes app, derived from shadcn's Taxonomy. (by haydenbleasel)

Compass Alternatives

Similar projects and alternatives to compass

  • lexical

    56 compass VS lexical

    Lexical is an extensible text editor framework that provides excellent reliability, accessibility and performance.

  • react-hot-toast.com

    Smoking Hot React Notifications 🔥

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better compass alternative or higher similarity.

compass reviews and mentions

Posts with mentions or reviews of compass. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-02.
  • Using Next.js 13 and Lexical to create a simple notes app
    3 projects | dev.to | 2 Dec 2022
    'use client'; import { getAuth } from 'firebase/auth'; import type { FC } from 'react'; import { useEffect, useState } from 'react'; import { Code, HelpCircle, LogOut, UserPlus, Zap } from 'react-feather'; import Link from 'next/link'; import Tooltip from '../components/tooltip'; import Modal from '../components/modal'; import Login from '../components/login'; import { firebase } from '../lib/firebase'; import useAppCheck from '../hooks/useAppCheck'; import useTheme from '../hooks/useTheme'; import useUser from '../hooks/useUser'; import useProfile from '../hooks/useProfile'; import Skeleton from '../components/skeleton'; import Editor from '../components/editor'; const app = firebase(); const Home: FC = () => { const auth = getAuth(); const user = useUser(); const [showLogin, setShowLogin] = useState(false); const profile = useProfile(); useTheme(); useAppCheck(app); useEffect(() => { if (user && showLogin) { setShowLogin(false); } }, [user, showLogin]); if (typeof user === 'undefined' || (user && profile.loading)) { return ; } return (
    Link> Tooltip> Link> Tooltip> Link> Tooltip> {user ? ( auth.signOut()} > button> Tooltip> ) : ( } > setShowLogin(true)} > button> Tooltip> Modal> )} div> div> ); }; export default Home;

Stats

Basic compass repo stats
1
0
10.0
over 1 year ago

haydenbleasel/compass is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of compass is TypeScript.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com