/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "ParagraphState.h" #include #include namespace facebook::react { #ifdef ANDROID folly::dynamic ParagraphState::getDynamic() const { return toDynamic(*this); } MapBuffer ParagraphState::getMapBuffer() const { return toMapBuffer(*this); } #endif } // namespace facebook::react