react18-tools/turborepo-template

View on GitHub
lib/src/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
"use client";
/**
 * Don't export client side components from here.
 *
 * Hooks are okay to export from here as they do not require "use client" directive.
 */

export * from "./client";
export * from "./hooks";